/* Global Font Override */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-title,
.title-large {
    /* font-family: "Recoleta", sans-serif !important; */
}

.breadcrumb-list {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    list-style: none;
    padding: 0;
}

.section-title span {
    background-image: url(../imgs/shape/img-s-53.webp);
    background-repeat: no-repeat;
    background-size: 100% 28px;
    background-position: bottom left;

}

/* Impact Area Styles */
.impact-area .section-title-light {
    font-size: 60px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 60px;
    color: var(--primary);
    max-width: 900px;
}

.impact-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 600px;
    width: 100%;
    margin-bottom: 30px;
}

.impact-card .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.impact-card:hover .bg-image {
    transform: scale(1.05);
}

.impact-card .overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 2;
}

.impact-card .overlay-content .sub-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 15px;
    display: block;
    opacity: 0.9;
}

.impact-card .overlay-content .card-title {
    font-size: 42px;
    color: #fff;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

@media only screen and (max-width: 991px) {
    .impact-area .section-title-light {
        font-size: 48px;
    }

    .impact-card {
        height: 500px;
    }

    .impact-card .overlay-content .card-title {
        font-size: 32px;
    }
}

@media only screen and (max-width: 767px) {
    .impact-area .section-title-light {
        font-size: 36px;
    }

    .impact-card {
        height: 400px;
    }

    .impact-card .overlay-content {
        padding: 30px;
    }

    .impact-card .overlay-content .card-title {
        font-size: 26px;
    }
}

.breadcrumb-list li {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--secondary);
}

.breadcrumb-list li a {
    color: var(--primary);
    transition: all 0.3s;
}

.breadcrumb-list li a:hover {
    color: #e33a7d;
}



/* Project Details Page Styles */
.project-screenshots-area {
    padding-bottom: 80px;
}

.project-screenshots-slider {
    overflow: hidden;
}

.screenshot-item img {
    width: 100%;
    border-radius: 0px;
    transition: transform 0.4s ease;
}

.screenshot-item:hover img {
    transform: scale(1.02);
}

/* Project Sectional Styling */
.project-section-spacing {
    padding: 100px 0;
}

.project-meta-area {
    border-bottom: 1px solid var(--border);
    padding-bottom: 80px;
}

.project-meta-area .sub-title {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: #e33a7d;
    margin-bottom: 15px;
    display: block;
    letter-spacing: 2px;
}

.project-meta-area .section-title {
    font-size: 40px;
    margin-bottom: 40px;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-tag {
    padding: 10px 22px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.tech-tag:hover {
    background: #e33a7d;
    color: var(--white);
    border-color: #e33a7d;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(204, 20, 42, 0.2);
}

.project-overview-area .content-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.project-overview-area .text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--secondary);
    max-width: 900px;
}

.client-info-section {
    background-color: #FAF8F7;
    margin-top: 40px;
}

.client-info-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 40px;
    align-items: center;
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--border);
    transition: all 0.5s ease;
}

.client-info-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.info-block .label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    opacity: 0.7;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-block .value {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
}

.project-launch-btn {
    padding: 18px 35px;
    background: #e33a7d;
    color: var(--white);
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s;
    border: none;
}

.project-launch-btn:hover {
    background: var(--primary);
    color: var(--white);
    gap: 18px;
}

@media only screen and (max-width: 1199px) {
    .client-info-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .project-launch-btn {
        grid-column: span 2;
        justify-content: center;
    }
}

@media only screen and (max-width: 767px) {
    .client-info-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .project-launch-btn {
        grid-column: span 1;
    }

    .project-overview-area .content-title {
        font-size: 32px;
    }
}

/* Project Specific Sections v2 */
.project-testimonial-v2 {
    background-color: #f8f8f8;
}

.testimonial-content-v2 {
    padding-right: 50px;
}

.testimonial-content-v2 .quote-icon {
    width: 60px;
    height: 60px;
    background: #e33a7d;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.testimonial-content-v2 .quote-text p {
    font-style: italic;
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: var(--primary);
}

.testimonial-content-v2 .author-info {
    margin-top: 50px;
}

.testimonial-content-v2 .author-info .name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-content-v2 .author-info .role {
    font-size: 16px;
    opacity: 0.7;
}

.about-client-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-client-thumb .about-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #e33a7d;
    color: var(--white);
    padding: 8px 25px;
    font-size: 24px;
    font-weight: 600;
    border-radius: 4px;
    z-index: 2;
}

.about-client-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-client-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--primary);
}

@media only screen and (max-width: 991px) {
    .testimonial-content-v2 {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .project-testimonial-v2 .row {
        flex-direction: column;
    }
}

/* Feature Area Styles */
.feature-area {
    background-color: #f0f2f4;
    border-radius: 20px;
    padding: 80px 45px;
    margin-bottom: 100px;
}

.feature-area .section-title {
    font-size: 40px;
    line-height: 1.2;
}

.feature-area .section-content {
    display: grid;
    gap: 40px 60px;
    grid-template-columns: 620px auto;
    align-items: center;
    margin-top: 60px;
}

.feature-thumb {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

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

.feature-thumb .info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.feature-thumb .info img {
    width: 90px;
    margin-bottom: 15px;
    filter: invert(14%) sepia(86%) saturate(6011%) hue-rotate(349deg) brightness(81%) contrast(98%);
}

.feature-thumb .info .text {
    font-size: 24px;
    color: var(--white);
    font-weight: 500;
}

.feature-thumb .btn-wrapper {
    background-color: #ffffff;
    position: absolute;
    left: 80px;
    bottom: 0;
    padding: 25px 35px 20px;
    border-radius: 20px 20px 0 0;
    z-index: 2;
}

.feature-box {
    display: grid;
    gap: 20px 30px;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.feature-box:last-child {
    border-bottom: none;
}

.feature-box .thumb img {
    max-width: 80px;
    filter: invert(14%) sepia(86%) saturate(6011%) hue-rotate(349deg) brightness(81%) contrast(98%);
}

.feature-box .title {
    font-size: 24px;
    margin-bottom: 10px;
}

/* About Area Styles */
.about-area {
    padding: 100px 0;
    margin-bottom: 100px;
}

.about-area-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;
}

.about-area .thumb img {

    width: 100%;
}

.about-area .section-content {
    position: relative;
}

.about-area .section-content .bg {
    position: absolute;
    top: -50px;
    right: -50px;
    z-index: -1;
    /* opacity: 0.1; */
}

.about-area .section-content .bg img {
    filter: invert(14%) sepia(86%) saturate(6011%) hue-rotate(349deg) brightness(81%) contrast(98%);
}

.about-area .section-title {
    font-size: 48px;
    margin-bottom: 30px;
}

.about-area .text-wrapper {
    margin-bottom: 40px;
}

.about-area .text {
    font-size: 20px;
    line-height: 1.6;
}

.bg-light {
    background-color: #f3f3f3 !important
}

.about-area .text span {
    color: #e33a7d;
    font-weight: 600;
}

@media only screen and (max-width: 1199px) {
    .feature-area .section-content {
        grid-template-columns: 1fr;
    }

    .about-area-inner {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 767px) {
    .feature-area {
        padding: 40px 20px;
    }

    .feature-thumb .btn-wrapper {
        left: 40px;
    }

    .about-area .section-title {
        font-size: 32px;
    }
}

.project-info-area .section-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.project-info-area .text {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.project-info-area .text-wrapper {
    margin-bottom: 30px;
}

.breadcrumb-list li span {
    color: var(--secondary);
    opacity: 0.5;
}



.intro-area .main-thumb img,
.intro-area .main-thumb video {
    aspect-ratio: 810 / 610;
    object-fit: cover;
    width: 100%;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
}

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

    .intro-area .main-thumb img,
    .intro-area .main-thumb video {
        clip-path: none;
        aspect-ratio: 16 / 9;
        /* More standard video ratio for mobile */
    }
}

.projects-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

@media only screen and (max-width: 1199px) {
    .projects-grid-layout {
        grid-template-columns: repeat(2, 1fr);

    }
}

@media only screen and (max-width: 767px) {
    .projects-grid-layout {
        grid-template-columns: 1fr;

    }
}


.projects-grid-layout .project-box {
    margin-bottom: 0;
    transition: all 0.4s ease;
}

/* Custom Filter Dropdown Styles */
.project-area-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

@media only screen and (max-width: 991px) {
    .project-area-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.projects-filter-wrapper {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 100;
}

.custom-filter-dropdown .filter-btn {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 12px 25px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.custom-filter-dropdown .filter-btn i {
    font-size: 12px;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.custom-filter-dropdown .show .filter-btn i {
    transform: rotate(180deg);
}

.dark .custom-filter-dropdown .filter-btn {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.custom-filter-dropdown .filter-btn:hover {
    border-color: var(--primary);
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.dark .custom-filter-dropdown .filter-btn:hover {
    background: #222;
    border-color: var(--white);
}

.custom-filter-dropdown .dropdown-toggle::after {
    display: none;
}

.custom-filter-dropdown .filter-menu {
    border: none;
    border-radius: 20px;
    padding: 15px;
    margin-top: 10px !important;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    min-width: 220px;
}

.dark .custom-filter-dropdown .filter-menu {
    background: rgba(26, 26, 26, 0.9);
}

.filter-menu li {
    margin-bottom: 5px;
}

.filter-menu li:last-child {
    margin-bottom: 0;
}

.filter-menu .dropdown-item {
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 400;
    color: var(--secondary);
    transition: all 0.2s ease;
}

.filter-menu .dropdown-item:hover,
.filter-menu .dropdown-item.active {
    background: var(--primary);
    color: var(--white);
}

.dark .filter-menu .dropdown-item:hover,
.dark .filter-menu .dropdown-item.active {
    background: var(--white);
    color: var(--black);
}

.project-box.hide-item {
    display: none;
    opacity: 0;
    transform: scale(0.9);
}

.project-box.show-item {
    display: block;
    animation: fadeInScale 0.4s ease forwards;
}

.faq-area .section-title {
    font-weight: 500 !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pt-80 {
    padding-top: 80px
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Reset for service-details page conflicts */
.section-header .meta-box .breadcrumb-list {
    gap: 15px;
    margin-bottom: 0;
}

.section-header .meta-box .breadcrumb-list li:not(:first-child) {
    padding-inline-start: 0;
    border-inline-start: none;
    margin-inline-start: 0;
}

.intro-area {
    background-color: #FAF8F7;
    padding-top: 100px;
    padding-bottom: 0px
}

@media only screen and (max-width: 1199px) {
    .intro-area {
        padding-top: 140px;
        padding-bottom: 60px
    }
}

.dark .intro-area {
    background-color: #171717
}

.intro-area .intro-grid {
    display: grid;
    grid-template-columns: 50% 50% 1fr;
}

@media only screen and (max-width: 1919px) {
    .intro-area .intro-grid {
        grid-template-columns: 355px 472px 1fr
    }
}

@media only screen and (max-width: 1399px) {
    .intro-area .intro-grid {
        grid-template-columns: 355px 402px 1fr
    }
}

@media only screen and (max-width: 991px) {
    .intro-area .intro-grid {
        grid-template-columns: 355px 1fr
    }
}

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

.intro-area .intro-info .text {
    padding-bottom: 13px;
    color: var(--secondary)
}

.intro-area .highlight-text {
    font-size: 18px;
    font-weight: 400;
    max-width: 131px;
    line-height: 1.8;
    padding-bottom: 78px
}

@media only screen and (max-width: 1919px) {
    .intro-area .highlight-text {
        padding-bottom: 28px
    }
}

@media only screen and (max-width: 1399px) {
    .intro-area .highlight-text {
        max-width: 201px
    }
}

.intro-area .arrow-button {
    padding-bottom: 156px
}

.dir-rtl .intro-area .arrow-button {
    transform: rotateY(180deg)
}

@media only screen and (max-width: 1919px) {
    .intro-area .arrow-button {
        max-width: 40px;
        padding-bottom: 46px
    }
}

@media only screen and (max-width: 1399px) {
    .intro-area .arrow-button {
        display: none
    }
}

.intro-area .counter-box {
    background-color: var(--white);
    padding: 35px;
    border-radius: 30px;
    max-width: 230px;
    position: relative
}

.dark .intro-area .counter-box {
    background-color: #222
}

@media only screen and (max-width: 1399px) {
    .intro-area .counter-box {
        padding: 25px;
        border-radius: 15px
    }
}

.intro-area .counter-box::before {
    position: absolute;
    content: "";
    inset-inline-end: -68px;
    top: 50%;
    transform: translateY(-50%);
    width: 82px;
    height: 2px;
    background-color: var(--primary)
}

@media only screen and (max-width: 767px) {
    .intro-area .counter-box::before {
        display: none
    }
}

.intro-area .counter-title {
    font-size: 50px;
    font-weight: 700;
    padding-bottom: 10px
}

@media only screen and (max-width: 1919px) {
    .intro-area .counter-title {
        font-size: 40px
    }
}

@media only screen and (max-width: 767px) {
    .intro-area .intro-content {
        order: -1;
        margin-bottom: 30px
    }
}

.intro-area .intro-content .text {
    font-size: 24px;
    padding-bottom: 50px;
    font-weight: 300
}

@media only screen and (max-width: 1399px) {
    .intro-area .intro-content .text {
        font-size: 20px
    }
}

.intro-area .intro-title {
    font-size: 80px;
    padding-bottom: 18px;
    font-weight: 500;
    line-height: .92
}


@media only screen and (max-width: 1919px) {
    .intro-area .intro-title {
        font-size: 50px
    }
}

@media only screen and (max-width: 1399px) {
    .intro-area .intro-title {
        font-size: 40px
    }
}

@media only screen and (max-width: 991px) {
    .intro-area .intro-title {
        font-size: 40px
    }
}

@media(max-width: 575px) {
    .intro-area .intro-title {
        font-size: 30px
    }
}

.intro-area .intro-title .small-hypen {
    display: inline-block;
    height: 15px;
    width: 30px;
    background-color: #121212;
    border-radius: 3px;
    position: relative;
    top: -20px
}

@media only screen and (max-width: 1199px) {
    .intro-area .intro-title .small-hypen {
        height: 10px;
        top: -15px
    }
}

@media only screen and (max-width: 991px) {
    .intro-area .intro-title .small-hypen {
        height: 5px;
        top: -10px
    }
}

.intro-area .main-thumb {
    position: relative
}

@media only screen and (max-width: 1199px) {
    .intro-area .main-thumb {
        display: block;
        margin-top: 30px;
    }
}

.dir-rtl .intro-area .main-thumb img {
    transform: rotateY(180deg)
}

.intro-area .shape-1 {
    position: absolute;
    inset-inline-end: 0;
    bottom: 27%
}

.dir-rtl .intro-area .shape-1 {
    transform: rotateY(180deg)
}

@media only screen and (max-width: 1919px) {
    .intro-area .shape-1 {
        width: 100px
    }
}

@media only screen and (max-width: 1399px) {
    .intro-area .shape-1 {
        bottom: 17%
    }
}

.service-area-inner {
    display: grid;
    gap: 40px 60px;
    grid-template-columns: auto 730px
}

@media only screen and (max-width: 1399px) {
    .service-area-inner {
        grid-template-columns: auto 630px
    }
}

@media only screen and (max-width: 1199px) {
    .service-area-inner {
        grid-template-columns: auto 540px
    }
}

@media only screen and (max-width: 991px) {
    .service-area-inner {
        grid-template-columns: auto
    }
}

.service-area .section-title {
    max-width: 470px
}

@media only screen and (max-width: 1919px) {
    .service-area .section-title {
        max-width: 430px
    }
}

@media only screen and (max-width: 1399px) {
    .service-area .section-title {
        max-width: 370px
    }
}

.service-area .section-content .title-wrapper {
    margin-top: 33px
}

@media only screen and (max-width: 1199px) {
    .service-area .section-content .title-wrapper {
        margin-top: 28px
    }
}

.service-area .section-content .shape {
    margin-top: 37px
}

@media only screen and (max-width: 1199px) {
    .service-area .section-content .shape {
        margin-top: 27px
    }
}

.dir-rtl .service-area .section-content .shape img {
    transform: rotateY(180deg)
}

.service-area .section-content .btn-wrapper {
    margin-top: 50px
}

@media only screen and (max-width: 1199px) {
    .service-area .section-content .btn-wrapper {
        margin-top: 40px
    }
}

.service-area .services-wrapper {
    display: grid;
    gap: 93px 120px;
    grid-template-columns: repeat(2, 1fr)
}

@media only screen and (max-width: 1399px) {
    .service-area .services-wrapper {
        gap: 93px 80px
    }
}

@media only screen and (max-width: 1199px) {
    .service-area .services-wrapper {
        gap: 63px 50px
    }
}

@media(max-width: 575px) {
    .service-area .services-wrapper {
        grid-template-columns: repeat(1, 1fr)
    }
}

.service-box .tag {
    font-size: 14px;
    display: block;
    color: var(--primary);
    padding-bottom: 23px;
    border-bottom: 1px solid var(--primary);
    text-transform: uppercase
}

@media only screen and (max-width: 1199px) {
    .service-box .tag {
        padding-bottom: 13px
    }
}

.service-box .title {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 400;
    margin-top: 29px
}

@media only screen and (max-width: 1399px) {
    .service-box .title {
        font-size: 26px
    }
}

@media only screen and (max-width: 1199px) {
    .service-box .title {
        font-size: 22px;
        margin-top: 19px
    }
}

.service-box .icon {
    margin-top: 32px
}

@media only screen and (max-width: 1199px) {
    .service-box .icon {
        margin-top: 22px
    }
}

.service-box .icon img {
    height: 60px
}

@media only screen and (max-width: 1199px) {
    .service-box .icon img {
        height: 45px
    }
}

.service-box .text {
    margin-top: 30px
}

.service-box .btn-wrapper {
    margin-top: 51px
}

@media only screen and (max-width: 1399px) {
    .service-box .btn-wrapper {
        margin-top: 41px
    }
}

@media only screen and (max-width: 1199px) {
    .service-box .btn-wrapper {
        margin-top: 31px
    }
}


.testimonial-area .section-heading {
    text-align: center;
    padding-bottom: 37px
}

@media only screen and (max-width: 767px) {
    .testimonial-area .section-heading {
        padding-bottom: 20px
    }
}

.testimonial-area .testimonial-item {
    max-width: 910px;
    margin: auto;
    text-align: center;
    cursor: grab
}

@media only screen and (max-width: 1399px) {
    .testimonial-area .testimonial-item {
        max-width: 790px
    }
}

.testimonial-area .text {
    font-size: 24px;
    margin-top: 34px;
    font-weight: 300;
    color: var(--primary)
}

@media only screen and (max-width: 1399px) {
    .testimonial-area .text {
        font-size: 20px
    }
}

@media only screen and (max-width: 991px) {
    .testimonial-area .text {
        font-size: 18px
    }
}

.testimonial-area .meta {
    display: block;
    margin: auto;
    text-align: center;
    margin-top: 60px
}

@media only screen and (max-width: 1399px) {
    .testimonial-area .meta {
        margin-top: 40px
    }
}

@media only screen and (max-width: 991px) {
    .testimonial-area .meta {
        margin-top: 30px
    }
}

.testimonial-area .meta img {
    border-radius: 50%
}

.testimonial-area .name {
    font-size: 20px
}

.testimonial-area .post {
    font-size: 14px;
    line-height: 1;
    margin-top: 5px
}

.testimonial-area .testimonial-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    cursor: pointer
}

@media only screen and (max-width: 991px) {
    .testimonial-area .testimonial-pagination {
        margin-top: 30px
    }
}

.testimonial-area .testimonial-pagination .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
    border-radius: 50px;
    background-color: #e7e7e7;
    opacity: 1
}

.dark .testimonial-area .testimonial-pagination .swiper-pagination-bullet {
    background-color: #4a4a4a
}

.testimonial-area .testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--primary);
    width: 30px
}

/* 
.contact-area {
    background-color: var(--black);
    position: relative;
    z-index: 1;
    overflow: hidden
}

.dark .contact-area {
    background-color: #171717
}

.contact-area-inner {
    display: grid;
    gap: 30px 60px;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between
}

@media only screen and (max-width: 991px) {
    .contact-area-inner {
        grid-template-columns: auto
    }
}

@media only screen and (min-width: 1919px) {
    .contact-area .section-spacing {
        padding-top: 120px;
        padding-bottom: 120px
    }
}

.contact-area .shape-1 {
    position: absolute;
    inset-inline-end: -6%;
    top: -15%;
    z-index: -1;
    width: 440px
}

@media only screen and (max-width: 1399px) {
    .contact-area .shape-1 {
        top: -45%
    }
}

@media only screen and (max-width: 1199px) {
    .contact-area .shape-1 {
        width: 340px
    }
}

@media only screen and (max-width: 991px) {
    .contact-area .shape-1 {
        width: 270px;
        top: -35%
    }
}

@media only screen and (max-width: 767px) {
    .contact-area .shape-1 {
        display: none
    }
}

.dir-rtl .contact-area .shape-1 img {
    transform: rotateY(180deg)
}

.contact-area .section-title {
    max-width: 690px;
    color: var(--white)
}

@media only screen and (max-width: 1919px) {
    .contact-area .section-title {
        max-width: 630px
    }
}

@media only screen and (max-width: 1199px) {
    .contact-area .section-title {
        max-width: 580px
    }
}

@media only screen and (max-width: 991px) {
    .contact-area .section-title {
        max-width: 450px
    }
}

.contact-area .section-content .text {
    max-width: 600px;
    color: var(--white-2)
}

.contact-area .section-content .text-wrapper {
    margin-top: 27px
}

@media only screen and (max-width: 991px) {
    .contact-area .section-content .text-wrapper {
        margin-top: 17px
    }
}

.contact-area .wc-btn-primary {
    border-color: var(--white)
}

.contact-area .wc-btn-circle {
    border-color: var(--white)
} */


.about-area-inner {
    display: grid;
    grid-template-columns: 1fr 43%
}

@media only screen and (max-width: 1199px) {
    .about-area-inner {
        grid-template-columns: 1fr 47%
    }
}

@media only screen and (max-width: 991px) {
    .about-area-inner {
        grid-template-columns: 1fr
    }
}

.about-area .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.about-area .section-content {
    padding: 100px 80px;
    position: relative;
    z-index: 1;
    display: block
}

@media only screen and (max-width: 1199px) {
    .about-area .section-content {
        padding: 60px 50px
    }
}

@media(max-width: 575px) {
    .about-area .section-content {
        padding: 60px 30px
    }
}

.about-area .section-content .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
    z-index: -1
}

.about-area .section-content .bg:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #cc142ae8;
    top: 0;
    inset-inline-start: 0
}

.about-area .section-content .bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.about-area .section-content .text-wrapper {
    margin-top: 323px
}

@media only screen and (max-width: 1919px) {
    .about-area .section-content .text-wrapper {
        margin-top: 123px
    }
}

@media only screen and (max-width: 1199px) {
    .about-area .section-content .text-wrapper {
        margin-top: 43px
    }
}

@media only screen and (max-width: 991px) {
    .about-area .section-content .text-wrapper {
        margin-top: 33px
    }
}

.about-area .section-content .text {
    font-size: 24px;
    line-height: 1.35;
    max-width: 440px;
    color: var(--white)
}

@media only screen and (max-width: 1199px) {
    .about-area .section-content .text {
        font-size: 20px
    }
}

.about-area .section-content .text span {
    color: var(--white)
}

.about-area .section-content .btn-wrapper {
    margin-top: 42px
}

@media only screen and (max-width: 991px) {
    .about-area .section-content .btn-wrapper {
        margin-top: 32px
    }
}

.about-area .section-content .section-title {
    max-width: 440px;
    color: var(--white)
}

.about-area .section-content .wc-btn-primary {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--black)
}



.counter-area-inner {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 870px
}

@media only screen and (max-width: 1919px) {
    .counter-area-inner {
        grid-template-columns: 1fr 670px
    }
}

@media only screen and (max-width: 1199px) {
    .counter-area-inner {
        grid-template-columns: 1fr
    }
}

.counter-area .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 900 / 500;
}

.counter-area .counter-wrapper {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr
}

@media(max-width: 575px) {
    .counter-area .counter-wrapper {
        grid-template-columns: 1fr
    }
}

.counter-area .counter-box {
    padding: 46px 50px 32px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fbf9f9;
    position: relative;
    z-index: 1
}

@media only screen and (max-width: 1919px) {
    .counter-area .counter-box {
        padding: 36px 40px 22px
    }
}

.dark .counter-area .counter-box {
    background-color: #1b1b1b
}

.counter-area .counter-box:before {
    content: url(../imgs/shape/img-s-46.webp);
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    z-index: -1
}

.dir-rtl .counter-area .counter-box:before {
    transform: rotateY(180deg)
}

.dark .counter-area .counter-box:before {
    content: url(../imgs/shape/img-s-46-light.webp)
}

.counter-area .counter-box .text {
    font-size: 24px;
    line-height: 1.26
}

@media only screen and (max-width: 1919px) {
    .counter-area .counter-box .text {
        font-size: 20px
    }
}

@media only screen and (max-width: 991px) {
    .counter-area .counter-box {
        padding: 60px 30px !important;
        justify-content: flex-start !important;
    }
}

.counter-area .counter-box .number {
    font-size: 100px;
    line-height: 1;
    margin-top: 60px
}

@media only screen and (max-width: 1919px) {
    .counter-area .counter-box .number {
        font-size: 70px
    }
}

@media only screen and (max-width: 991px) {
    .counter-area .counter-box .number {
        margin-top: 20px !important;
    }
}

.counter-area .counter-box.dark {
    background-color: var(--black)
}

.dark .counter-area .counter-box.dark {
    background-color: #1b1b1b
}

.counter-area .counter-box.dark:before {
    content: url(../imgs/shape/img-s-46-light.webp)
}


.service-area {
    background-color: #faf8f7
}

.dark .service-area {
    background-color: #171717
}

.service-area .service-top-wrapper {
    padding-bottom: 40px
}

.service-area .service-top-wrapper {
    display: grid;
    grid-template-columns: 1fr 520px
}

@media only screen and (max-width: 991px) {
    .service-area .service-top-wrapper {
        grid-template-columns: 1fr
    }
}

.service-area .service-top-wrapper .text {
    padding-bottom: 31px
}

@media only screen and (max-width: 991px) {
    .service-area .service-top-wrapper .text {
        padding-bottom: 10px
    }
}

.service-area .wc-btn-underline {
    color: #000 !important;
    text-transform: capitalize;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    text-decoration-color: #000;
}

.service-area .wc-btn-underline:hover {
    color: #000 !important;
}

.service-area .services-wrapper-box {
    overflow: hidden
}

.service-area .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 -70px;
    gap: 50px 0
}

@media only screen and (max-width: 1399px) {
    .service-area .services-grid {
        margin: 0 -30px
    }
}

@media only screen and (max-width: 1199px) {
    .service-area .services-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media only screen and (max-width: 991px) {
    .service-area .services-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width: 575px) {
    .service-area .services-grid {
        grid-template-columns: 1fr
    }
}

.service-area .service-item {
    padding: 0 70px;
    border-inline-start: 1px solid #ece7e4
}

.dark .service-area .service-item {
    border-color: #272727
}

@media only screen and (max-width: 1399px) {
    .service-area .service-item {
        padding: 0 30px
    }
}

.service-area .service-item .icon {
    padding-bottom: 48px
}

@media only screen and (max-width: 1199px) {
    .service-area .service-item .icon {
        padding-bottom: 25px
    }
}

.service-area .service-item .title {
    padding-bottom: 25px;
    font-size: 30px;
    color: var(--primary);
}

@media only screen and (max-width: 1919px) {
    .service-area .service-item .title {
        font-size: 24px;
        color: var(--primary);
    }
}

.service-area .service-item .text {
    font-size: 18px;
    color: var(--secondary);
    font-weight: 300;
    line-height: 1.5;
    margin-top: 20px;
}

@media only screen and (max-width: 767px) {
    .service-area .section-title {
        font-size: 32px !important;
        line-height: 1.1 !important;
        letter-spacing: -0.5px !important;
        font-weight: 600 !important;
        margin-top: 0 !important;
    }

    .service-area .content .text {
        font-size: 16px !important;
        line-height: 1.4 !important;
        letter-spacing: 0 !important;
        font-weight: 400 !important;
        margin-top: 15px !important;
    }

    .service-area .service-top-wrapper {
        padding-bottom: 40px !important;
    }

    .service-area .services-grid {
        margin: 0 !important;
        gap: 20px !important;
    }

    .service-area .service-item {
        padding: 40px 30px !important;
        border: 1px solid #ece7e4 !important;
        text-align: center !important;
        border-radius: 12px !important;
        background: #fff !important;
        transition: all 0.3s ease;
    }

    .dark .service-area .service-item {
        border-color: #272727 !important;
        background: #1b1b1b !important;
    }

    .service-area .service-item .icon {
        padding-bottom: 20px !important;
    }

    .service-area .service-item .title {
        padding-bottom: 15px !important;
    }

    .service-area .service-item .text {
        margin-top: 10px !important;
    }

    .feature-area .section-title,
    .blog-area .section-title {
        font-size: 24px !important;
        line-height: 1.2 !important;
    }

    .feature-area .feature-box .title {
        font-size: 22px;
        line-height: 1;
    }
}


.project-area .section-title {
    max-width: 330px
}

.project-area .section-header {
    display: grid;
    gap: 20px 60px;
    grid-template-columns: auto auto auto;
    align-items: center;
    justify-content: space-between
}

@media only screen and (max-width: 991px) {
    .project-area .section-header {
        grid-template-columns: 1fr 1fr;
        gap: 20px 40px
    }
}

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

.project-area .section-header .text {
    max-width: 450px
}

.project-area .nav-icon {
    width: 70px;
    height: 70px;
    font-size: 20px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s;
    color: var(--primary)
}

@media only screen and (max-width: 1919px) {
    .project-area .nav-icon {
        width: 60px;
        height: 60px;
        font-size: 16px
    }
}

.project-area .nav-icon:hover {
    background-color: var(--theme);
    color: var(--black);
    border-color: rgba(0, 0, 0, 0)
}

.project-area .slider-nav {
    display: flex;
    gap: 20px
}

.dir-rtl .project-area .slider-nav {
    flex-direction: row-reverse
}

@media only screen and (max-width: 991px) {
    .project-area .slider-nav {
        display: none
    }
}

.project-area .projects-wrapper-box {
    margin-top: 60px
}

@media only screen and (max-width: 1919px) {
    .project-area .projects-wrapper-box {
        margin-top: 70px
    }
}

@media only screen and (max-width: 1399px) {
    .project-area .projects-wrapper-box {
        margin-top: 50px
    }
}

.project-area .projects-wrapper-box .swiper {
    margin: -30px;
    padding: 30px
}

@media only screen and (max-width: 991px) {
    .project-area .projects-wrapper-box .swiper {
        margin: 0;
        padding: 0
    }
}

.project-box {
    display: inline-block;
    position: relative
}

.project-box:hover .thumb {
    transform: scale(1.09)
}

@media only screen and (max-width: 991px) {
    .project-box:hover .thumb {
        transform: none
    }
}

.project-box:hover .wc-btn-circle {
    margin-bottom: 0;
    opacity: 1
}

.project-box .thumb {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    transition: all .5s
}

.project-box .thumb:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(18, 18, 18, 0) 38.85%, #121212 100%);
    top: 0;
    inset-inline-start: 0
}

.project-box .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.project-box .tag {
    font-size: 11px;
    text-transform: uppercase;
    line-height: 1;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, .66);
    color: var(--black)
}

.project-box .meta {
    top: 0px;
    inset-inline-start: 0px;
}

.project-box .title {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 600;
    color: var(--white)
}

@media only screen and (max-width: 1919px) {
    .project-box .title {
        font-size: 22px
    }
}

.project-box .title a:hover {
    color: var(--white)
}

.project-box .content {
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    margin: 40px;
    overflow: hidden
}

@media only screen and (max-width: 1919px) {
    .project-box .content {
        margin: 30px
    }
}

.project-box .wc-btn-circle {
    margin-top: 28px;
    width: 60px;
    height: 60px;
    background-color: var(--theme);
    color: var(--black);
    margin-bottom: -88px;
    opacity: 0;
    transition: all .5s
}

@media only screen and (max-width: 991px) {
    .project-box .wc-btn-circle {
        margin-bottom: 0;
        opacity: 1
    }
}

.project-box .wc-btn-circle i {
    transform: rotate(-45deg)
}


.hero-area.mobile-only {
    margin-top: 80px
}

.hero-area.mobile-only .container {
    padding: 0;
}

.hero-area.mobile-only .hero-area-inner {
    display: grid;
    grid-template-columns: 51% 1fr;
    padding-top: 0;
}

@media only screen and (max-width: 1919px) {
    .hero-area.mobile-only .hero-area-inner {
        grid-template-columns: 55% 1fr
    }
}

@media only screen and (max-width: 1199px) {
    .hero-area.mobile-only .hero-area-inner {
        grid-template-columns: 1fr
    }
}

.hero-area.mobile-only .thumb {
    position: relative;
    overflow: hidden
}

.hero-area.mobile-only .thumb:after {
    position: absolute;
    content: url(../imgs/shape/img-s-51.webp);
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-start: 0
}

.hero-area.mobile-only .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.hero-area.mobile-only .section-content {
    position: relative;
    padding: 170px 60px;
    padding-inline-start: 200px;
    z-index: 1
}

@media only screen and (max-width: 1919px) {
    .hero-area.mobile-only .section-content {
        padding: 120px 60px;
        padding-inline-start: 180px
    }
}

@media only screen and (max-width: 1399px) {
    .hero-area.mobile-only .section-content {
        padding: 100px 60px;
        padding-inline-start: 160px
    }
}

@media only screen and (max-width: 1199px) {
    .hero-area.mobile-only .section-content {
        padding: 80px 60px
    }
}

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


    .hero-area.mobile-only .section-content {
        padding: 60px 20px 80px;
    }
}

.hero-area.mobile-only .section-content .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
    z-index: -1
}

.hero-area.mobile-only .section-content .bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.hero-area.mobile-only .section-content .section-title {
    font-size: 100px;
    line-height: .85;
    margin-top: -6px;
    color: var(--black)
}

@media only screen and (max-width: 1919px) {
    .hero-area.mobile-only .section-content .section-title {
        font-size: 80px
    }
}

@media only screen and (max-width: 1399px) {
    .hero-area.mobile-only .section-content .section-title {
        font-size: 70px
    }
}

@media(max-width: 575px) {
    .hero-area.mobile-only .section-content .section-title {
        font-size: 50px
    }
}

.hero-area.mobile-only .section-content .section-title .shape-1 {
    height: 72px;
    margin-top: -18px
}

@media only screen and (max-width: 1919px) {
    .hero-area.mobile-only .section-content .section-title .shape-1 {
        height: 62px
    }
}

@media only screen and (max-width: 1399px) {
    .hero-area.mobile-only .section-content .section-title .shape-1 {
        height: 52px;
        margin-top: -13px
    }
}

@media(max-width: 575px) {
    .hero-area.mobile-only .section-content .section-title .shape-1 {
        height: 42px;
        margin-top: -10px
    }
}

.hero-area.mobile-only .section-content .section-subtitle {
    font-size: 16px;
    color: var(--black);
    writing-mode: vertical-lr;
    transform: rotate(180deg)
}

@media only screen and (max-width: 1199px) {
    .hero-area.mobile-only .section-content .section-subtitle {
        transform: none;
        writing-mode: unset
    }
}

.hero-area.mobile-only .section-content .section-subtitle.has-right-line {
    padding-inline-end: 110px
}

.dir-rtl .hero-area.mobile-only .section-content .section-subtitle.has-right-line {
    padding-inline-start: 110px
}

@media only screen and (max-width: 1199px) {
    .hero-area.mobile-only .section-content .section-subtitle.has-right-line {
        padding-inline-end: 0
    }

    .dir-rtl .hero-area.mobile-only .section-content .section-subtitle.has-right-line {
        padding-inline-start: 0px
    }
}

.hero-area.mobile-only .section-content .section-subtitle.has-right-line:after {
    width: 1px;
    height: 90px;
    bottom: 0;
    transform: translateX(-50%);
    left: 50%;
    top: auto
}

@media only screen and (max-width: 1199px) {
    .hero-area.mobile-only .section-content .section-subtitle.has-right-line:after {
        display: none
    }
}

.hero-area.mobile-only .section-content .subtitle-wrapper {
    position: absolute;
    inset-inline-start: 48px;
    top: 50%;
    transform: translateY(-50%)
}

@media only screen and (max-width: 1199px) {
    .hero-area.mobile-only .section-content .subtitle-wrapper {
        transform: none;
        position: static;
        margin-bottom: 20px
    }
}

.hero-area.mobile-only .section-content .text {
    font-size: 24px;
    line-height: 1.33;
    max-width: 490px;
    color: var(--black-2)
}

@media only screen and (max-width: 1199px) {
    .hero-area.mobile-only .section-content .text {
        font-size: 20px
    }
}

.hero-area.mobile-only .section-content .text-wrapper {
    margin-top: 42px
}

@media only screen and (max-width: 991px) {
    .hero-area.mobile-only .section-content .text-wrapper {
        margin-top: 32px
    }
}

.hero-area.mobile-only .section-content .btn-wrapper {
    margin-top: 42px
}

@media only screen and (max-width: 991px) {
    .hero-area.mobile-only .section-content .btn-wrapper {
        margin-top: 32px
    }
}

.hero-area.mobile-only .section-content .wc-btn-primary {
    background-color: var(--black);
    color: var(--white)
}

.hero-area.mobile-only .section-content .review-wrapper {
    margin-top: 40px;
    border-top: 1px solid var(--black);
    display: inline-flex
}

.hero-area.mobile-only .section-content .ratings {
    border-inline-start: 1px solid var(--black);
    padding-inline-start: 20px;
    margin-inline-start: 15px
}

.hero-area.mobile-only .section-content .rating {
    font-size: 50px;
    line-height: 1;
    margin-top: 13px;
    color: var(--black)
}

.hero-area.mobile-only .section-content .review {
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    color: var(--black-2)
}

.hero-area.mobile-only .section-content .rating-icons {
    display: flex;
    gap: 4px;
    margin-top: 15px
}

.hero-area.mobile-only .section-content .rating-text {
    font-size: 18px;
    color: var(--black);
    line-height: 1;
    display: inline-block;
    margin-top: 17px
}


.clients-area {
    padding-top: 94px;
    padding-bottom: 50px
}

@media only screen and (max-width: 1399px) {
    .clients-area {
        padding-top: 74px
    }
}

@media only screen and (max-width: 1199px) {
    .clients-area {
        padding-top: 54px
    }
}

.clients-area .section-title {
    text-align: center;
    margin-top: 0;
    line-height: normal;
}

.clients-area .clients-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--border);
    border-inline-start: 1px solid var(--border)
}

@media only screen and (max-width: 767px) {
    .clients-area .clients-wrapper {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media(max-width: 575px) {
    .clients-area .clients-wrapper {
        grid-template-columns: repeat(2, 1fr)
    }
}

.clients-area .client-box {
    height: 170px;
    padding: 20px;
    border-inline-end: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: inline-flex;
    justify-content: center;
    align-items: center
}

@media only screen and (max-width: 1919px) {
    .clients-area .client-box {
        height: 150px
    }
}

@media only screen and (max-width: 1199px) {
    .clients-area .client-box {
        height: 120px
    }
}

@media only screen and (max-width: 767px) {
    .clients-area .client-box {
        height: 100px
    }
}

.clients-area .clients-wrapper-box {
    margin-top: 52px
}

@media only screen and (max-width: 1919px) {
    .clients-area .clients-wrapper-box {
        margin-top: 32px
    }
}

@media only screen and (max-width: 1199px) {
    .clients-area .clients-wrapper-box {
        margin-top: 22px
    }
}

.section-bg {
    background-color: #FAF8F7;
}

.bg-theme {
    background-color: #e33a7d !important;
}

.bg-theme .section-title,
.bg-theme .text {
    color: var(--white) !important;
}

.bg-theme .wc-btn-underline {
    color: var(--white) !important;
}

.bg-theme .service-item {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.bg-theme .service-item .title {
    color: var(--white) !important;
}

.bg-theme .service-item .text {
    color: var(--white) !important;
    opacity: 0.9;
}

.bg-theme .service-item .icon .show-light {
    display: none !important;
}

.bg-theme .service-item .icon .show-dark {
    display: inline-block !important;
}

@media only screen and (max-width: 767px) {
    .bg-theme .service-item {
        background-color: rgba(255, 255, 255, 0.05) !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
    }
}

/* Process Grid Styles */
.process-grid-4-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.process-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: #e33a7d;
}

.process-item .icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    background: #e33a7d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-item .icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.process-item .content-title {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.process-item .text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary);
}

@media only screen and (max-width: 1199px) {
    .process-grid-4-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 575px) {
    .process-grid-4-col {
        grid-template-columns: 1fr;
    }
}

/* Vision & Mission Styles - CTA Design */
.vision-mission-area {
    background: #000;
    /* background: radial-gradient(ellipse at top, #330000 0%, #1a0000 40%, #000000 100%),
        linear-gradient(135deg, #1a0000 0%, #330000 25%, #1a0000 50%, #2d0000 75%, #000000 100%);
    background-size: 100% 100%, 200% 200%;
    background-position: center, 0% 0%; */
    padding: 100px 0 100px 0;
    position: relative;
}

.vision-mission-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: radial-gradient(circle at 20% 50%, rgba(204, 20, 42, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(204, 20, 42, 0.2) 0%, transparent 50%); */
    pointer-events: none;
}

@media only screen and (max-width: 991px) {
    .vision-mission-area {
        padding: 80px 0 40px 0;
    }
}

@media only screen and (max-width: 767px) {
    .vision-mission-area {
        padding: 60px 0 30px 0;
    }
}

/* Why Choose Us Styles - CTA Design */
.why-choose-area {
    background: radial-gradient(ellipse at bottom, #330000 0%, #1a0000 40%, #000000 100%),
        linear-gradient(135deg, #000000 0%, #2d0000 25%, #1a0000 50%, #330000 75%, #1a0000 100%);
    background-size: 100% 100%, 200% 200%;
    background-position: center, 100% 100%;
    padding: 50px 0 100px 0;
    position: relative;
}

.why-choose-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(204, 20, 42, 0.35) -120%, rgba(204, 20, 42, 0.1) 40%, transparent 70%);
    pointer-events: none;
}

@media only screen and (max-width: 991px) {
    .why-choose-area {
        padding: 40px 0 80px 0;
    }
}

@media only screen and (max-width: 767px) {
    .why-choose-area {
        padding: 30px 0 60px 0;
    }
}

/* Custom Grid for Why Choose Us - 3 Equal Width Boxes */
.why-choose-grid-custom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media only screen and (max-width: 991px) {
    .why-choose-grid-custom {
        grid-template-columns: 1fr;
    }
}

/* Increase paragraph width and font size for CTA cards */
.cta-item .cta-subtext {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: auto;
    max-width: 100%;
    line-height: 1.6;
}

@media only screen and (max-width: 1399px) {
    .cta-item .cta-subtext {
        font-size: 15px;
    }
}

/* Trust Us Carousel Styles */
.trust-us-area {
    padding: 100px 0;
    overflow: hidden;
}

.trust-us-header {
    margin-bottom: 60px;
    text-align: center;
}

.trust-us-header .subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e33a7d;
    margin-bottom: 15px;
    display: inline-block;
    font-weight: 600;
}

.trust-us-header .title {
    font-size: 40px;
    line-height: 1.2;
}

.trust-slider .swiper-wrapper {
    display: flex;
    align-items: center;
}

.trust-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    transition: all 0.3s ease;
}

.trust-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

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

/* Specific colorful backgrounds for trust items */
.trust-item.color-1 {
    background-color: #FFC107;
}

/* Amber */
.trust-item.color-2 {
    background-color: #000000;
}

/* Black */
.trust-item.color-3 {
    background-color: #FBBC05;
}

/* Yellow */
.trust-item.color-4 {
    background-color: #EA4335;
}

/* Red */
.trust-item.color-5 {
    background-color: #FFFFFF;
    border: 1px solid #eee;
}

/* White */
.trust-item.color-5 img {
    filter: none;
}

/* Show original color for white bg */
.trust-item.color-6 {
    background-color: #E21D2C;
}

/* Another Red */
.trust-item.color-7 {
    background-color: #CDDA8D;
}

/* Light Green */
.trust-item.color-8 {
    background-color: #C21626;
}

/* Dark Red */
.trust-item.color-9 {
    background-color: #381210;
}

/* Brown */
.trust-item.color-10 {
    background-color: #FFC107;
}

/* Amber */
.trust-item.color-11 {
    background-color: #0096E6;
}

/* Blue */
.trust-item.color-12 {
    background-color: #EE6619;
}

/* Orange */

@media only screen and (max-width: 767px) {
    .trust-us-header .title {
        font-size: 32px;
    }

    .trust-item {
        height: 100px;
        padding: 20px;
    }
}

/* Fix Trust Us Carousel Display */
.blogdetails-contentright .trust-us-area {
    margin-top: 50px;
    margin-bottom: 50px;
}

.blogdetails-contentright .trust-us-area .trust-slider {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Ensure swiper slides are visible */
.trust-slider .swiper-slide {
    display: flex;
    justify-content: center;
    height: auto;
}

/* Ensure colorful cards don't get overwritten */
.trust-item.color-1 {
    background-color: #FFC107 !important;
}

.trust-item.color-2 {
    background-color: #000000 !important;
}

.trust-item.color-3 {
    background-color: #FBBC05 !important;
}

.trust-item.color-4 {
    background-color: #EA4335 !important;
}

.trust-item.color-5 {
    background-color: #FFFFFF !important;
}

.trust-item.color-6 {
    background-color: #E21D2C !important;
}

.trust-item.color-7 {
    background-color: #CDDA8D !important;
}

.trust-item.color-8 {
    background-color: #C21626 !important;
}

.trust-item.color-9 {
    background-color: #381210 !important;
}

.trust-item.color-10 {
    background-color: #FFC107 !important;
}

.trust-item.color-11 {
    background-color: #0096E6 !important;
}

.trust-item.color-12 {
    background-color: #EE6619 !important;
}

/* Compact Trust Us Styles for Inside Article */
.trust-us-area-compact {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.trust-us-area-compact .swiper-wrapper {
    display: flex;
}

.trust-us-area-compact .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.trust-us-area-compact .trust-item {
    width: 100%;
    height: 100px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.trust-us-area-compact .trust-item:hover {
    transform: translateY(-5px);
}

.trust-us-area-compact .trust-item img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Ensure colors still apply for compact version */
.trust-us-area-compact .trust-item.color-1 {
    background-color: #FFC107 !important;
}

.trust-us-area-compact .trust-item.color-2 {
    background-color: #000000 !important;
}

.trust-us-area-compact .trust-item.color-3 {
    background-color: #FBBC05 !important;
}

.trust-us-area-compact .trust-item.color-4 {
    background-color: #EA4335 !important;
}

.trust-us-area-compact .trust-item.color-5 {
    background-color: #FFFFFF !important;
}

.trust-us-area-compact .trust-item.color-5 img {
    filter: none;
}

.trust-us-area-compact .trust-item.color-6 {
    background-color: #E21D2C !important;
}

.trust-us-area-compact .trust-item.color-7 {
    background-color: #CDDA8D !important;
}

.trust-us-area-compact .trust-item.color-8 {
    background-color: #C21626 !important;
}

.trust-us-area-compact .trust-item.color-9 {
    background-color: #381210 !important;
}

.trust-us-area-compact .trust-item.color-10 {
    background-color: #FFC107 !important;
}

.trust-us-area-compact .trust-item.color-11 {
    background-color: #0096E6 !important;
}

.trust-us-area-compact .trust-item.color-12 {
    background-color: #EE6619 !important;
}

.trust-us-area-compact .swiper-wrapper {
    transform: translate3d(0, 0, 0) !important;
    /* Ensure hardware acceleration */
}

.trust-us-area-compact .trust-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
}

/* CRITICAL FIX: Constrain Trust Us Compact Area to prevent layout explosion */
.trust-us-area-compact {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Ensure child elements don't force width open */
.trust-us-area-compact .swiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.title-wrapper {
    max-width: 100%;
    overflow-wrap: break-word;
}

/* Enhanced Typography for Service Details Content */
.blog-details-area .text-wrapper .text {
    font-size: 20px !important;
    line-height: 1.6 !important;
    color: #333333;
    font-weight: 300 !important;
    margin-bottom: 25px;
    letter-spacing: 0.2px;
}

.dark .blog-details-area .text-wrapper .text {
    color: #e0e0e0;
}

.blog-details-area .text-wrapper .text strong {
    font-weight: 600 !important;
    color: #121212;
}

.dark .blog-details-area .text-wrapper .text strong {
    color: #ffffff;
}

/* 2-Column Overview Layout */
.overview-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
    align-items: center;
}

@media only screen and (max-width: 991px) {
    .overview-grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .overview-grid-layout .thumb {
        order: -1;
        /* Option: Show image first on mobile if desired, or keep default */
    }
}

/* Service Hero Area Listing Page */
.service-hero-area {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #0d0d0d;
    padding-top: 150px;
}

.service-hero-area .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Dark Design Overlay */
.service-hero-area .hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.service-hero-area .hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.service-hero-area .container {
    position: relative;
    z-index: 2;
}

.service-hero-area .hero-title {
    font-size: 90px;
    line-height: 1.05;
    font-weight: 100;
    /* Extra thin as requested */
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.service-hero-area .hero-text {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
}

.service-hero-area .breadcrumb-list {
    margin-bottom: 50px;
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.service-hero-area .breadcrumb-list li,
.service-hero-area .breadcrumb-list li a {
    color: rgba(255, 255, 255, 0.6);
}

.service-hero-area .breadcrumb-list li a:hover {
    color: #fff;
}

@media only screen and (max-width: 1399px) {
    .service-hero-area .hero-title {
        font-size: 70px;
    }
}

@media only screen and (max-width: 991px) {
    .service-hero-area {
        min-height: 60vh;
        padding-top: 120px;
    }

    .service-hero-area .hero-bg {
        width: 100%;
        opacity: 0.4;
        mask-image: none;
        -webkit-mask-image: none;
    }


    .service-hero-area .hero-title {
        font-size: 50px;
    }

    .service-hero-area .hero-text {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .service-hero-area .hero-title {
        font-size: 38px;
        letter-spacing: -1px;
    }
}

/* Transparent Header Styling for Hero video background */
.header-area.transparent-white {
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.header-area.transparent-white .main-menu>ul>li>a {
    color: #fff;
    opacity: 1;
}

.header-area.transparent-white .main-menu>ul>li:hover>a {
    color: #eeca47;
    /* Use brand yellow for hover visibility */
}

.header-area.transparent-white .header__logo svg .cls-1 {
    fill: #fff;
}

.header-area.transparent-white:not(.sticky) .header__navicon button i {
    color: #fff;
    transition: color 0.3s ease;
}

.header-area.transparent-white:not(.sticky) .header__navicon button:hover i {
    color: #eeca47;
}

/* Ensure Logo yellow stays bright */
.header-area.transparent-white .header__logo svg .cls-2 {
    fill: #eeca47 !important;
}

/* Sticky Header State Reset */
.header-area.transparent-white.sticky {
    background-color: var(--white);
    position: fixed;
}

.header-area.transparent-white.sticky .main-menu>ul>li>a {
    color: var(--primary);
}

.header-area.transparent-white.sticky .header__logo svg .cls-1 {
    fill: var(--black);
}

.header-area.transparent-white.sticky .header__navicon button i {
    color: var(--primary);
}


/* Featured Services Section (Dark Cards) */
.featured-services-area {
    background-color: #000;
    padding: 100px 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    /* Small gap as in image */
}

.featured-card {
    position: relative;
    height: 700px;
    /* Tall cards as in reference */
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background-color: #1a1a1a;
    transition: background-color 0.4s ease;
    text-decoration: none !important;
}

.featured-card:hover {
    background-color: #222;
}

.featured-card .bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.4;
    /* Reduced from 0.6 for better contrast */
    transition: transform 0.8s cubic-bezier(0.1, 0, 0, 1);
}

/* Dark Overlay for Text Readability */
.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Process Card Grid (Standard across details pages) */
.process-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 60px 0;
}

.process-step-card {
    position: relative;
    height: 500px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background-color: #000;
    /* transition: all conflict with GSAP scroll anim */
    transition: background-color 0.4s ease;
    text-decoration: none !important;
}

.process-step-card .process-card-content {
    transition: transform 0.4s ease;
}

.process-step-card .bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.25;
    /* Slightly less opaque for better contrast */
    transition: transform 0.8s cubic-bezier(0.1, 0, 0, 1);
}

.process-step-card:hover .bg-image {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.4;
}

.process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darker gradient for text readability */
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
    pointer-events: none;
}

.process-card-content {
    position: relative;
    z-index: 3;
}

.process-card-top .step-number {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 20px;
    display: block;
    letter-spacing: 1px;
}

.process-card-top .step-title {
    font-size: 28px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Added for better visibility */
}

.process-card-bottom .step-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    /* Increased opacity from 0.75 */
}

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

@media (max-width: 768px) {
    .process-cards-grid {
        grid-template-columns: 1fr;
    }
}


/* Infinite Logo Carousel Section */

.logo-carousel-area {
    padding: 40px 0;
    overflow: hidden;
    background-color: transparent;
    width: 100%;
}

.logo-track {
    display: flex;
    width: calc((250px + 80px) * 20);
    animation: scroll-left 40s linear infinite;
    gap: 80px;
}

.logo-slide {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-slide span {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    letter-spacing: -1px;
    opacity: 0.6;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.logo-slide:hover span {
    opacity: 1;
    color: #000;
}

/* Specific styling for some brand names from the screenshot */
.logo-webflow {
    font-family: sans-serif;
    font-weight: 900;
}

.logo-spotify {
    font-family: sans-serif;
    letter-spacing: -2px;
}

.logo-yahoo {
    font-style: italic;
    font-weight: 900;
    text-transform: lowercase;
}


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

    100% {
        transform: translateX(calc(-330px * 10));
    }
}


/* Full Width Footer for Inner Pages */
.footer-area.full-width {
    border-radius: 0;
    width: 100%;
    padding: 0;
}

/* CTA Portfolio & Contact Section */
.cta-portfolio-area {
    background-color: #000;
    padding: 100px 0;
}



.cta-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
}

.cta-item {
    padding: 60px 40px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 480px;
    position: relative;
    text-decoration: none !important;
    transition: transform 0.4s ease;
}

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

.cta-item.portfolio {
    background-color: #432E91;
}

.cta-item.contact {
    background: linear-gradient(135deg, #4caf51 0%, #0ec5c1 100% 100%) !important;
}

.cta-item .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.cta-item .label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-item .fa-arrow-right {
    font-size: 14px;
    opacity: 0.8;
}

.cta-item .cta-title {
    font-family: var(--font_dmsans) !important;
    font-size: 60px;
    line-height: 1.05;
    font-weight: 100 !important;
    margin: 0;
    color: #fff;
    max-width: 350px;
}

.cta-item .cta-subtext {
    font-size: 18px;
    color: rgb(255 255 255);
    margin-top: auto;
    max-width: 500px;
    font-weight: 300;
}

.cta-item .cta-tagline {
    font-family: var(--font_dmsans) !important;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 200 !important;
    margin-bottom: 20px;
    color: #fff;
}

.cta-item .cta-main-title {
    font-family: var(--font_dmsans) !important;
    font-size: 80px;
    line-height: 1;
    font-weight: 100 !important;
    margin-top: auto;
    color: #fff;
}

.cta-item .bottom-link {
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.cta-item .contact-link {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.cta-item .contact-link:hover {
    border-bottom-color: #fff;
}

@media only screen and (max-width: 1399px) {
    .cta-item .cta-main-title {
        font-size: 90px;
    }
}

@media only screen and (max-width: 1199px) {
    .cta-item .cta-main-title {
        font-size: 70px;
    }

    .cta-item .cta-title {
        font-size: 45px;
    }
}

@media only screen and (max-width: 991px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .cta-item {
        min-height: 400px;
    }

    .cta-item .cta-main-title {
        font-size: 60px;
    }
}


.featured-card:hover::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.95) 100%);
}

.featured-card:hover .bg-image {
    transform: translate(-50%, -50%) scale(1.1);
}

.featured-card .card-top {
    position: relative;
    z-index: 3;
    /* Increased for overlay */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.featured-card .card-info {
    color: #fff;
}

.featured-card .card-number {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.featured-card .card-title {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 300;
    margin: 0;
    color: #fff;
}

.featured-card .arrow-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    color: #5555ff;
    /* Blue arrow as in reference */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: all 0.3s;
}

.featured-card:hover .arrow-icon {
    transform: translate(5px, -5px);
}

.featured-card .card-bottom {
    position: relative;
    z-index: 3;
    /* Increased for overlay */
}

.featured-card .card-text {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    /* Slightly brighter for better contrast */
    margin: 0;
    max-width: 250px;
}

@media only screen and (max-width: 1399px) {
    .featured-card .card-title {
        font-size: 32px;
    }
}

@media only screen and (max-width: 991px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-card {
        height: 600px;
    }
}

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

    .featured-card {
        height: 500px;
    }

    .featured-card .card-title {
        font-size: 30px;
    }
}

/* Centered Hero Style */
.new-hero-area {
    background-color: #fff;
    padding-bottom: 80px;
    padding-top: 60px;
    margin-top: 80px;
    /* Space for header */
}

.breadcrumb-bar {
    background-color: #b0b0b01c;
    padding: 25px 0;
    margin-top: 0;
    margin-bottom: 0px;
    width: 100%;
    z-index: 10;
}

@media (max-width: 991px) {
    .breadcrumb-bar {
        margin-top: 70px;
    }

    .new-hero-area {
        margin-top: 70px;
    }
}

.breadcrumb-bar .breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-bar .breadcrumb-list li a {
    color: #b25d8d;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-bar .breadcrumb-list li a:hover {
    color: var(--theme);
}

.breadcrumb-bar .breadcrumb-list li span {
    color: #999;
}

.hero-content-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 60px;
}

.hero-content-centered .hero-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #333;
}

.hero-content-centered .hero-title {
    font-size: 65px;
    font-weight: 500;
    line-height: 1.1;
    color: #121212;
    margin-bottom: 0;
    letter-spacing: -1px;
}

@media (max-width: 991px) {
    .hero-content-centered .hero-title {
        font-size: 40px;
    }

    .new-hero-area {
        padding-top: 40px;
    }
}

@media (max-width: 767px) {
    .hero-content-centered .hero-title {
        font-size: 28px;
    }

    .new-hero-area {
        padding-top: 30px;
    }
}

/* Rearrange Service Area Header */
.service-area .service-top-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    max-width: 900px;
    margin: 0 auto 60px !important;
    padding-bottom: 0 !important;
}

.service-area .service-top-wrapper .content {
    margin-top: 25px;
}

.service-area .service-top-wrapper .content .text {
    max-width: 100% !important;
    font-size: 18px;
    line-height: 1.6;
}

.service-area .section-title {
    margin-bottom: 0;
}

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

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 100%;
    }
}

/* Global Pill Button with Right Icon (Base Styles) */
.wc-btn-pill-icon-right {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 8px 8px 8px 30px;
    border: 1px solid #111;
    border-radius: 50px;
    background: transparent;
    color: #111 !important;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wc-btn-pill-icon-right .icon-wrapper {
    width: 44px;
    height: 44px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 18px;
}

.wc-btn-pill-icon-right:hover {
    background: #111;
    color: #fff !important;
}

.wc-btn-pill-icon-right:hover .icon-wrapper {
    background: #fff;
    color: #111;
    transform: rotate(-45deg);
}

/* Global Button Mobile Refinements */
@media only screen and (max-width: 767px) {
    .wc-btn-pill-icon-right {
        white-space: nowrap !important;
        padding: 8px 8px 8px 25px !important;
        font-size: 14px !important;
        gap: 10px !important;
        min-width: 200px !important;
        justify-content: center !important;
        margin-bottom: 20px !important;
    }

    .wc-btn-pill-icon-right .icon-wrapper {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
    }

    /* Hero CTA & Roadmap CTA Mobile Alignment */
    .hero-content-centered .d-flex.gap-3,
    .process-roadmap-area .d-flex.gap-3 {
        flex-direction: column !important;
        gap: 0px !important;
        align-items: center !important;
        margin-top: 30px !important;
    }

    .hero-content-centered .d-flex.gap-3 .wc-btn-primary.d-none.d-md-flex {
        display: none !important;
    }
}