/* ==========================================================================
   Art Root Custom Page Styles (Shared custom overrides)
   ========================================================================== */

/* Scoped About Page Wrapper */
.art-root-about-page {
    background-color: #111111;
    color: #b0b0b0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* Scoped Blog Page Wrapper */
.art-root-blog {
    background-color: #111111;
    color: #b0b0b0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* Shared Inner Banner Styling */
.inner-banner {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding-top: 175px;
    padding-bottom: 75px;
}
.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.8);
    z-index: 1;
}
.inner-banner .container {
    position: relative;
    z-index: 2;
}
.inner-banner h6 {
    font-family: "Oswald", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #27aee4;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}
.inner-banner h1 {
    font-family: "Oswald", sans-serif;
    font-size: 46px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 1px;
}
.inner-banner p {
    font-size: 16px;
    color: #d0d0d0;
    max-width: 820px;
    line-height: 1.6;
    margin: 0;
}

/* Global Section Title/Subtitle inherits from homepage */
.section-title {
    font-size: 40px;
    font-weight: 400 !important;
    letter-spacing: 0px;
    text-transform: capitalize;
}
.section-subtitle {
    font-weight: 400;
    letter-spacing: 1px;
}

/* Layout-specific styling for Who We Are section */
.about .about-image-wrapper {
    position: relative;
    padding-bottom: 20px;
    padding-right: 20px;
}
.about .about-image-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: 90%;
    border: 2px solid #27aee4;
    border-radius: 12px;
    z-index: 1;
    opacity: 0.3;
}
.about .about-img {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    transition: transform 0.4s ease;
    max-height: 650px;
}
.about .about-image-wrapper:hover .about-img {
    transform: translateY(-8px);
}
.about .about-content-wrapper {
    padding-left: 20px;
}
.about .about-content-wrapper p {
    margin-bottom: 20px;
}
.about .about-content-wrapper p:last-child {
    margin-bottom: 0;
}
/* About features list styles */
.about .about-features-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
}
.about .about-features-list li {
    display: flex;
    align-items: center;
}
.about .about-features-list li .feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(39, 174, 228, 0.1);
    border: 1px solid #27aee4;
    border-radius: 50%;
    color: #27aee4;
    margin-right: 15px;
    font-size: 11px;
    transition: all 0.3s ease;
}
.about .about-features-list li:hover .feature-check {
    background: #27aee4;
    color: #fff;
    transform: scale(1.1);
}
.about .about-features-list li .feature-label {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #b0b0b0;
}
@media screen and (max-width: 575px) {
    .about .about-features-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
@media screen and (max-width: 991px) {
    .about .about-content-wrapper {
        padding-left: 0;
        margin-top: 40px;
    }
    .about .about-image-wrapper {
        padding-bottom: 15px;
        padding-right: 15px;
        max-width: 500px;
        margin: 0 auto;
    }
}
@media screen and (min-width: 992px) {
    .about .row > .col-lg-6 {
        display: flex !important;
        flex-direction: column !important;
    }
    .about .about-img {
        flex: 1 1 auto !important;
        height: 100% !important;
        object-fit: cover !important;
        width: 100% !important;
    }
}
.about .about-cta-wrapper {
    margin-top: 35px;
}

/* Scoped Timeline Styles */
.art-root-story-timeline {
    background-color: #000 !important;
    position: relative;
    overflow: hidden;
}
.art-root-story-timeline .section-desc {
    color: #a0a0a0;
    font-size: 15px;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}
.art-root-story-timeline .timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0 auto;
    padding: 0;
}
/* Central vertical line */
.art-root-story-timeline .timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(39, 174, 228, 0.25);
    transform: translateX(-50%);
    z-index: 1;
}
/* Timeline Items */
.art-root-story-timeline .timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 60px;
    z-index: 2;
}
.art-root-story-timeline .timeline-item:last-child {
    margin-bottom: 0;
}
/* Alternating Alignment */
.art-root-story-timeline .timeline-item.left {
    left: 0;
    padding-right: 50px;
    text-align: right;
}
.art-root-story-timeline .timeline-item.right {
    left: 50%;
    padding-left: 50px;
    text-align: left;
}
/* Content block styling (editorial, no heavy card) */
.art-root-story-timeline .timeline-content {
    position: relative;
}
.art-root-story-timeline .milestone-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #ff479b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.art-root-story-timeline .milestone-title {
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.art-root-story-timeline .timeline-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}
/* Markers - Numbers sitting on the central line */
.art-root-story-timeline .timeline-marker {
    position: absolute;
    top: 4px;
    width: 44px;
    height: 44px;
    line-height: 40px;
    background: #111111;
    border: 1.5px solid #27aee4;
    border-radius: 50%;
    text-align: center;
    font-family: "Oswald", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #27aee4;
    z-index: 5;
    transition: all 0.3s ease;
}
.art-root-story-timeline .timeline-item:hover .timeline-marker {
    border-color: #ff479b;
    color: #ff479b;
    box-shadow: 0 0 12px rgba(255, 71, 155, 0.3);
}
.art-root-story-timeline .timeline-item.left .timeline-marker {
    right: -22px;
}
.art-root-story-timeline .timeline-item.right .timeline-marker {
    left: -22px;
}
/* Tablet & Mobile Breakpoints */
@media screen and (max-width: 991px) {
    .art-root-story-timeline .timeline-line {
        left: 30px;
    }
    .art-root-story-timeline .timeline-item {
        width: 100%;
        margin-bottom: 45px;
        text-align: left !important;
    }
    .art-root-story-timeline .timeline-item.left {
        left: 0;
        padding-left: 70px;
        padding-right: 0;
    }
    .art-root-story-timeline .timeline-item.right {
        left: 0;
        padding-left: 70px;
        padding-right: 0;
    }
    .art-root-story-timeline .timeline-item.left .timeline-marker,
    .art-root-story-timeline .timeline-item.right .timeline-marker {
        left: 8px;
        right: auto;
    }
}

/* Scoped Philosophy Section Styles (2x2 Cards Grid) */
.art-root-philosophy {
    background-color: #111111;
    position: relative;
    overflow: hidden;
}
.art-root-philosophy .section-desc {
    color: #a0a0a0;
    font-size: 15px;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}
.art-root-philosophy .philosophy-card {
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}
/* Header wrapper inside card */
.art-root-philosophy .philosophy-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}
/* Small Editorial Number Tag */
.art-root-philosophy .philosophy-card-num {
    font-family: "Oswald", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #ff479b;
    background: rgba(255, 71, 155, 0.05);
    border: 1px solid rgba(255, 71, 155, 0.15);
    padding: 3px 12px;
    border-radius: 30px;
    letter-spacing: 1px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* Large Minimal Icon */
.art-root-philosophy .philosophy-card-icon {
    font-size: 32px;
    color: #27aee4;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* Card Title */
.art-root-philosophy .philosophy-card-title {
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    transition: all 0.35s ease;
}
/* Card Description */
.art-root-philosophy .philosophy-card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    color: #8c8c8c;
    margin: 0;
    line-height: 1.6;
    transition: all 0.35s ease;
}
/* Accent corner hover detail */
.art-root-philosophy .philosophy-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 0 0;
    border-color: #ff479b transparent transparent transparent;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* Hover Interactions */
.art-root-philosophy .philosophy-card:hover {
    transform: translateY(-8px);
    border-color: #27aee4;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    background-color: #1a1a1a;
}
.art-root-philosophy .philosophy-card:hover .philosophy-card-num {
    background: #ff479b;
    color: #ffffff;
    border-color: #ff479b;
    box-shadow: 0 4px 12px rgba(255, 71, 155, 0.35);
}
.art-root-philosophy .philosophy-card:hover .philosophy-card-icon {
    color: #ff479b;
    transform: translateY(-5px);
}
.art-root-philosophy .philosophy-card:hover .philosophy-card-title {
    color: #ff479b;
}
.art-root-philosophy .philosophy-card:hover .philosophy-card-desc {
    color: #e1e1e1;
}
.art-root-philosophy .philosophy-card:hover::after {
    border-width: 0 12px 12px 0;
    border-color: transparent #ff479b transparent transparent;
}
/* Responsive Styles */
@media screen and (max-width: 767px) {
    .art-root-philosophy .philosophy-card {
        padding: 30px;
    }
}

/* Scoped Why Art Root Section Styles */
.art-root-why {
    background-color: #000000 !important;
    position: relative;
    overflow: hidden;
}
.art-root-why .section-desc {
    color: #a0a0a0;
    font-size: 15px;
    line-height: 1.7;
}
.art-root-why .why-image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
}
.art-root-why .why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.art-root-why .why-image-wrapper:hover .why-img {
    transform: scale(1.03);
}
.art-root-why .why-content-wrapper {
    padding: 60px 40px 60px 40px;
    max-width: 680px;
}
/* 2 column grid */
.art-root-why .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.art-root-why .why-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background-color: #161616;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.art-root-why .why-item-header {
    margin-bottom: 20px;
}
.art-root-why .why-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #27aee4;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.02);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.art-root-why .why-item-title {
    font-family: "Oswald", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
    transition: all 0.35s ease;
}
.art-root-why .why-item-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    color: #8c8c8c;
    margin: 0 0 20px 0;
    line-height: 1.7;
    transition: all 0.35s ease;
}
.art-root-why .why-item-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.25);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* Hover Interactions */
.art-root-why .why-item:hover {
    border-color: #27aee4;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    background-color: #1a1a1a;
}
.art-root-why .why-item:hover .why-item-icon {
    color: #ffffff;
    background: #ff479b;
    border-color: #ff479b;
    box-shadow: 0 0 0 6px rgba(255, 71, 155, 0.15);
}
.art-root-why .why-item:hover .why-item-title {
    color: #27aee4;
}
.art-root-why .why-item:hover .why-item-desc {
    color: #d1d1d1;
}
.art-root-why .why-item:hover .why-item-arrow {
    color: #ff479b;
    transform: translateX(6px);
}
/* Desktop flexbox stretch for image height equalisation */
@media screen and (min-width: 992px) {
    .art-root-why .row {
        display: flex;
    }
    .art-root-why .col-lg-6 {
        display: flex;
        flex-direction: column;
    }
    .art-root-why .why-image-wrapper {
        flex: 1 1 auto;
        height: 100%;
    }
}
/* Responsive adjustment queries */
@media screen and (max-width: 991px) {
    .art-root-why .why-content-wrapper {
        padding: 60px 30px;
        max-width: 100%;
    }
    .art-root-why .why-image-wrapper {
        min-height: 450px;
    }
}
@media screen and (max-width: 575px) {
    .art-root-why .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Scoped Our Commitment Section Styles */
.art-root-commitment {
    background-color: #111111;
    position: relative;
    overflow: hidden;
}
.art-root-commitment .section-desc {
    color: #a0a0a0;
    font-size: 15px;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}
.art-root-commitment .commitment-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background-color: #161616;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.art-root-commitment .commitment-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #27aee4;
    margin-bottom: 22px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.art-root-commitment .commitment-item-title {
    font-family: "Oswald", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
    transition: all 0.35s ease;
}
.art-root-commitment .commitment-item-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    color: #8c8c8c;
    margin: 0;
    line-height: 1.7;
    transition: all 0.35s ease;
}
/* Hover Interactions */
.art-root-commitment .commitment-item:hover {
    border-color: #27aee4;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    background-color: #1a1a1a;
}
.art-root-commitment .commitment-item:hover .commitment-item-icon {
    color: #ffffff;
    background-color: #ff479b;
    border-color: #ff479b;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(255, 71, 155, 0.25);
}
.art-root-commitment .commitment-item:hover .commitment-item-title {
    color: #27aee4;
}
.art-root-commitment .commitment-item:hover .commitment-item-desc {
    color: #d1d1d1;
}

/* Scoped Our Work V2 CSS (Copied exactly from index.php) */
.art-root-work-v2 {
    background-color: #171717;
    position: relative;
    overflow: hidden;
}
.art-root-work-v2 .section-title {
    font-size: 40px;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
}
.art-root-work-v2 .section-title span {
    color: #ff479b;
}
.lets-talk {
    overflow: hidden;
}

/* Scoped Blog Listing Styles */
.art-root-blog-listing {
    background-color: #111111;
    background: #171717;
    padding: 85px 0 110px 0;
    position: relative;
}
.art-root-blog-listing .editorial-label {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}
.art-root-blog-listing .mb-40 {
    margin-bottom: 40px !important;
}
.art-root-blog-listing .search-box-wrapper {
    display: inline-block;
    width: 100%;
    max-width: 320px;
    position: relative;
}
.art-root-blog-listing .search-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 6px;
    transition: border-color 0.3s ease;
}
.art-root-blog-listing .search-form:focus-within {
    border-color: #27aee4;
}
.art-root-blog-listing .search-input {
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    width: 100%;
    padding: 0;
    outline: none;
}
.art-root-blog-listing .search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.art-root-blog-listing .search-submit-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    padding: 0;
    margin-left: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.3s ease;
    outline: none;
}
.art-root-blog-listing .search-submit-btn:hover {
    color: #27aee4;
}
.art-root-blog-listing .blog-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
    outline: none;
}
.art-root-blog-listing .blog-image-box {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 24px;
    background-color: #1a1a1a;
}
.art-root-blog-listing .blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.art-root-blog-listing .blog-card-link:hover .blog-img {
    transform: scale(1.03);
}
.art-root-blog-listing .blog-card-meta {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #ff479b;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.art-root-blog-listing .blog-card-title {
    
    font-size: 23px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}
.art-root-blog-listing .blog-card-link:hover .blog-card-title {
    color: #27aee4;
}
.art-root-blog-listing .blog-card-desc {
    font-family: "Poppins", sans-serif;
    font-size: 14.5px;
    color: #8c8c8c;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 991px) {
    .art-root-blog-listing .blog-image-box {
        height: 280px;
    }
    .art-root-blog-listing .blog-card-title {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .art-root-blog-listing .search-box-wrapper {
        max-width: 100%;
        margin-top: 15px;
    }
}

/* Scoped Blog Detail Page Styles */
.art-root-blog-detail {
    background-color: #111111;
    padding: 0;
    position: relative;
}
.art-root-blog-detail .article-container {
    max-width: 100%;
    margin: 0 auto;
}
/* Scoped Blog Detail Banner Styles */
.blog-detail-banner {
    position: relative;
    padding-bottom: 95px !important;
}
.blog-detail-banner h1 {
    max-width: 850px;
    font-size: 44px !important;
    text-transform: none !important;
    line-height: 1.35 !important;
    margin: 0 auto 25px auto !important;
}
/* .blog-detail-banner .banner-separator {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 30px 0 25px 0;
} */
.blog-detail-banner .banner-meta-share {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    flex-wrap: nowrap;
}
.blog-detail-banner .meta-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.blog-detail-banner .meta-item {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.blog-detail-banner .meta-item i {
    color: #27aee4;
    font-size: 14px;
}
.blog-detail-banner .meta-divider {
    color: rgba(255, 255, 255, 0.25);
    font-size: 13px;
}
.blog-detail-banner .share-right {
    display: flex;
    align-items: center;
}
.blog-detail-banner .share-container {
    position: relative;
}
.blog-detail-banner .share-trigger {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.35s ease;
    cursor: pointer;
    white-space: nowrap;
}
.blog-detail-banner .share-trigger i {
    color: #27aee4;
    font-size: 14px;
    transition: color 0.35s ease;
}
.blog-detail-banner .share-trigger:hover {
    color: #ffffff;
}
.blog-detail-banner .share-trigger:hover i {
    color: #ff479b;
}
.blog-detail-banner .share-dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 10px;
    background: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 12px 18px;
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    min-width: 160px;
    text-align: left;
}
.blog-detail-banner .share-dropdown a {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: #b0b0b0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}
.blog-detail-banner .share-dropdown a:hover {
    color: #ff479b;
}

@media (max-width: 767px) {
    .blog-detail-banner .meta-left {
        gap: 10px;
    }
    .blog-detail-banner .meta-item {
        font-size: 12px;
    }
    .blog-detail-banner .share-trigger {
        font-size: 12px;
    }
}

/* Article Content Body */
.art-root-blog-detail .article-body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 50px;
}
.art-root-blog-detail .article-body p {
    margin-bottom: 25px;
}
.art-root-blog-detail .article-body ul,
.art-root-blog-detail .article-body ol {
    margin-bottom: 30px;
    padding-left: 20px;
}
.art-root-blog-detail .article-body li {
    margin-bottom: 12px;
    color: #d0d0d0;
    line-height: 1.8;
    position: relative;
    list-style-type: disc;
}
.art-root-blog-detail .article-body li::marker {
    color: #27aee4;
}
.art-root-blog-detail .article-body h2,
.art-root-blog-detail .article-body h3,
.art-root-blog-detail .article-body h4 {
    
    color: #ffffff;
    font-weight: 600;
    margin: 45px 0 20px 0;
    line-height: 1.35;
}
.art-root-blog-detail .article-body h2 { font-size: 28px; }
.art-root-blog-detail .article-body h3 { font-size: 22px; }
.art-root-blog-detail .article-body blockquote {
    border-left: 3px solid #27aee4;
    padding-left: 20px;
    margin: 35px 0;
    font-style: italic;
    color: #b0b0b0;
    font-size: 17px;
}

/* Tags Section */
.art-root-blog-detail .tags-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    margin-bottom: 80px;
}
.art-root-blog-detail .tags-title {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.art-root-blog-detail .tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.art-root-blog-detail .tag-item {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: #b0b0b0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    padding: 6px 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.art-root-blog-detail .tag-item:hover {
    color: #27aee4;
    border-color: #27aee4;
    background: rgba(39, 174, 228, 0.03);
}

/* Latest Insights Section */
.art-root-blog-detail .latest-insights-section {
    /* border-top: 1px solid rgba(255, 255, 255, 0.08); */
    padding: 60px 0;
    background-color: #171717;
}
.art-root-blog-detail .latest-insights-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}
.art-root-blog-detail .blog-detail-content-wrapper {
    padding: 60px 0;
}

/* Scoped Contact Page Styles */
.art-root-contact {
     padding: 60px 0; 
    position: relative;
    width: 100%;
    background: #171717;
}
.art-root-contact .contact-form-wrapper {
    background-color: #000000;
    padding: 45px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.art-root-contact .contact-form-wrapper h3 {
    
    font-size: 26px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 30px;
}
.art-root-contact .form-group {
    margin-bottom: 25px;
}
.art-root-contact .form-group label {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    display: block;
}
.art-root-contact .form-control {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    height: 50px;
    padding: 10px 18px;
    transition: all 0.3s ease;
    width: 100%;
}
.art-root-contact textarea.form-control {
    height: auto;
    min-height: 140px;
    resize: vertical;
}
.art-root-contact .form-control:focus {
    background-color: #111111;
    border-color: #27aee4;
    color: #ffffff;
    outline: none;
    box-shadow: none;
}
.art-root-contact .submit-btn {
    font-family: "Poppins", sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: #27aee4;
    border: 1px solid #27aee4;
    color: #ffffff;
    border-radius: 4px;
    padding: 14px 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.art-root-contact .submit-btn:hover {
    background-color: #ff479b;
    border-color: #ff479b;
}

/* Contact Information Sidebar */
.art-root-contact .contact-info-wrapper {
    padding-left: 20px;
}
.art-root-contact .info-item {
    background-color: #000000;
    padding: 20px 30px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 25px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.art-root-contact .info-item:last-child {
    margin-bottom: 0;
}
.art-root-contact .info-item:hover {
    border-color: rgba(39, 174, 228, 0.25);
    transform: translateY(-2px);
}
.art-root-contact .info-label {
    font-family: "Oswald", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #ff479b;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.art-root-contact .info-content {
    display: flex;
    align-items: center;
    gap: 15px;
}
.art-root-contact .info-icon {
    font-size: 18px;
    color: #27aee4;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.art-root-contact .info-item:hover .info-icon {
    border-color: #ff479b;
    color: #ff479b;
    transform: scale(1.05);
}
.art-root-contact .info-text {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
}
.art-root-contact .info-text a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.art-root-contact .info-text a:hover {
    color: #ff479b;
}
.art-root-contact .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}
.art-root-contact .social-icons a {
    color: rgba(255, 255, 255, 0.6);
    background-color: #171717;
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.art-root-contact .social-icons a:hover {
    color: #ffffff;
    background-color: #27aee4;
    border-color: #27aee4;
}

@media (max-width: 991px) {
    .art-root-contact .contact-info-wrapper {
        padding-left: 0;
        margin-top: 50px;
    }
}

/* Contact Map Section */
.contact-map-section {
    width: 100%;
    height: 450px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    line-height: 0;
}
.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Scoped Services Page Styles */
.art-root-services-page {
    background-color: #111111;
     padding: 60px 0; 
    position: relative;
    width: 100%;
}
.art-root-services-page .service-card {
    background-color: transparent;
    margin-bottom: 50px;
    transition: all 0.3s ease;
    cursor: default;
    height: calc(100% - 50px);
    display: flex;
    flex-direction: column;
}
.art-root-services-page .service-image-box {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0;
    position: relative;
}
.art-root-services-page .service-image-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease;
    z-index: 1;
}
.art-root-services-page .service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.art-root-services-page .service-card:hover .service-img {
    transform: scale(1.05);
}
.art-root-services-page .service-card:hover .service-image-box::after {
    background: rgba(0, 0, 0, 0);
}
.art-root-services-page .service-content {
    padding: 20px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.art-root-services-page .service-title {
    
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}
.art-root-services-page .service-card:hover .service-title {
    color: #27aee4;
}
.art-root-services-page .service-desc {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}
.art-root-services-page .service-read-more {
    font-family: "Poppins", sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 20px;
    transition: color 250ms ease;
}
.art-root-services-page .service-read-more i {
    font-size: 13px;
    transition: transform 250ms ease;
}
.art-root-services-page .service-read-more:hover {
    color: #ff479b;
}
.art-root-services-page .service-read-more:hover i {
    transform: translateX(4px);
}

/* Scoped Service Detail Page Styles */
.art-root-service-detail {
    background-color: #111111;
    position: relative;
    width: 100%;
}
.art-root-service-detail .service-detail-content-wrapper {
     padding: 60px 0; 
}
.art-root-service-detail .benefits-list li::marker,
.art-root-service-detail .applications-list li::marker {
    color: #27aee4;
}
.art-root-service-detail .sidebar-links a:hover {
    color: #ff479b !important;
}
.art-root-service-detail .inquiry-btn:hover {
    background-color: #ff479b !important;
    border-color: #ff479b !important;
}
@media (max-width: 991px) {
    .art-root-service-detail .sidebar-wrapper {
        padding-left: 0 !important;
        margin-top: 50px;
    }
}

/* Service Details Card & Body Styling */
.art-root-service-detail .service-details-card {
    background-color: #000000;
    padding: 30px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.art-root-service-detail .service-featured-img {
    border-radius: 4px;
    overflow: hidden;
    max-height: 480px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.art-root-service-detail .service-featured-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.art-root-service-detail .detail-body h2 {
    
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 28px;
}
.art-root-service-detail .detail-body h3 {
    
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 22px;
}
.art-root-service-detail .detail-body p {
    font-family: "Poppins", sans-serif;
    color: #d0d0d0;
    line-height: 1.8;
    font-size: 15.5px;
    margin-bottom: 30px;
}
.art-root-service-detail .benefits-list,
.art-root-service-detail .applications-list {
    margin-bottom: 40px;
    padding-left: 20px;
}
.art-root-service-detail .benefits-list li,
.art-root-service-detail .applications-list li {
    font-family: "Poppins", sans-serif;
    color: #d0d0d0;
    margin-bottom: 12px;
    line-height: 1.7;
    list-style-type: disc;
    position: relative;
}

/* Service Details Sidebar Styling */
.art-root-service-detail .service-sidebar {
    padding-left: 20px;
}
.art-root-service-detail .sidebar-block {
    background-color: #000000;
    padding: 30px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}
.art-root-service-detail .sidebar-block h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.art-root-service-detail .custom-signage-cta h4 {
    
    font-size: 22px;
    text-transform: none;
    margin-bottom: 15px;
    letter-spacing: 0;
}

/* Sidebar Form fields */
.art-root-service-detail .sidebar-form .form-group {
    margin-bottom: 15px;
}
.art-root-service-detail .sidebar-form label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    display: block;
}
.art-root-service-detail .sidebar-form .form-control {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 4px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 12px 15px;
    height: auto;
    transition: all 0.3s ease;
}
.art-root-service-detail .sidebar-form textarea.form-control {
    min-height: 100px;
    resize: vertical;
}
.art-root-service-detail .sidebar-form .form-control:focus {
    border-color: #27aee4;
    outline: none;
    box-shadow: 0 0 0 1px #27aee4;
    background-color: #111111;
}
.art-root-service-detail .sidebar-form .form-control::placeholder {
    font-size: 14px;
}
.art-root-service-detail .sidebar-form .submit-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: #27aee4;
    border: 1px solid #27aee4;
    color: #ffffff;
    border-radius: 4px;
    padding: 12px 25px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}
.art-root-service-detail .sidebar-form .submit-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}
.art-root-service-detail .sidebar-form .submit-btn:hover {
    background-color: #ff479b;
    border-color: #ff479b;
}
.art-root-service-detail .sidebar-form .submit-btn:hover i {
    transform: translateX(4px);
}

/* Sidebar Services Nav List (Premium Bordered Architectural Layout) */
.art-root-service-detail .services-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.art-root-service-detail .services-nav-list li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    background-color: transparent;
}
.art-root-service-detail .services-nav-list li:last-child {
    border-bottom: none;
}
.art-root-service-detail .services-nav-list a {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}
.art-root-service-detail .services-nav-list a i {
    font-size: 11px;
    opacity: 0.5;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.art-root-service-detail .services-nav-list li:hover {
    background-color: rgba(255, 255, 255, 0.01);
}
.art-root-service-detail .services-nav-list li:hover a {
    color: #ff479b;
    padding-left: 10px;
    border-left-color: #ff479b;
}
.art-root-service-detail .services-nav-list li:hover a i {
    transform: translateX(4px);
    opacity: 1;
    color: #ff479b;
}

/* Active Service Highlighting */
.art-root-service-detail .services-nav-list li.active {
    background-color: rgba(39, 174, 228, 0.02);
}
.art-root-service-detail .services-nav-list li.active a {
    color: #27aee4;
    font-weight: 500;
    border-left: 2px solid #27aee4;
    padding-left: 10px;
}
.art-root-service-detail .services-nav-list li.active a i {
    opacity: 1;
    color: #27aee4;
}

/* Custom Signage CTA styling */
.art-root-service-detail .custom-signage-cta p {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 25px;
}
.art-root-service-detail .custom-signage-cta .cta-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: #27aee4;
    border: 1px solid #27aee4;
    color: #ffffff;
    border-radius: 4px;
    padding: 12px 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
}
.art-root-service-detail .custom-signage-cta .cta-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}
.art-root-service-detail .custom-signage-cta .cta-btn:hover {
    background-color: #ff479b;
    border-color: #ff479b;
}
.art-root-service-detail .custom-signage-cta .cta-btn:hover i {
    transform: translateX(4px);
}

/* Service Work Gallery (Pinterest Masonry Layout) */
.art-root-service-work-gallery {
    background-color: #171717;
      padding: 60px 0;  
    position: relative;
    width: 100%;
}
.art-root-service-work-gallery .header-col {
    margin-bottom: 60px;
}
.art-root-service-work-gallery .section-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.7;
    max-width: 720px;
    margin: 20px auto 0 auto;
}
.art-root-service-work-gallery .masonry-grid {
    column-count: 3;
    column-gap: 24px;
    width: 100%;
}
.art-root-service-work-gallery .masonry-item {
    break-inside: avoid;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #000000;
}
.art-root-service-work-gallery .masonry-item a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.art-root-service-work-gallery .masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 300ms ease;
}
.art-root-service-work-gallery .masonry-item:hover img {
    transform: scale(1.025);
}

/* Specific staggered aspect ratios to force Pinterest heights */
.art-root-service-work-gallery .masonry-item:nth-child(1) { aspect-ratio: 3 / 4; }
.art-root-service-work-gallery .masonry-item:nth-child(2) { aspect-ratio: 4 / 3; }
.art-root-service-work-gallery .masonry-item:nth-child(3) { aspect-ratio: 1 / 1; }
.art-root-service-work-gallery .masonry-item:nth-child(4) { aspect-ratio: 16 / 9; }
.art-root-service-work-gallery .masonry-item:nth-child(5) { aspect-ratio: 2 / 3; }
.art-root-service-work-gallery .masonry-item:nth-child(6) { aspect-ratio: 1 / 1; }
.art-root-service-work-gallery .masonry-item:nth-child(7) { aspect-ratio: 1 / 1; }
.art-root-service-work-gallery .masonry-item:nth-child(8) { aspect-ratio: 3 / 4; }
.art-root-service-work-gallery .masonry-item:nth-child(9) { aspect-ratio: 4 / 3; }
.art-root-service-work-gallery .masonry-item:nth-child(10) { aspect-ratio: 16 / 9; }
.art-root-service-work-gallery .masonry-item:nth-child(11) { aspect-ratio: 3 / 4; }

/* Responsive Masonry column controls */
@media (max-width: 991px) {
    .art-root-service-work-gallery {
         padding: 60px 0; 
    }
    .art-root-service-work-gallery .masonry-grid {
        column-count: 2;
        column-gap: 16px;
    }
    .art-root-service-work-gallery .masonry-item {
        margin-bottom: 16px;
    }
}
@media (max-width: 575px) {
    .art-root-service-work-gallery .masonry-grid {
        column-count: 1;
    }
}

/* Service Highlights Section (6 Value Cards) */
.art-root-service-highlights {
    background-color: #111111;
      padding: 60px 0;  
    position: relative;
    width: 100%;
}
.art-root-service-highlights .header-col {
    margin-bottom: 60px;
}
.art-root-service-highlights .section-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.7;
    max-width: 720px;
    margin: 20px auto 0 auto;
}
.art-root-service-highlights .highlight-col {
    margin-bottom: 30px;
}
.art-root-service-highlights .highlight-card {
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 300ms ease, transform 300ms ease;
}
.art-root-service-highlights .highlight-card .card-icon {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #27aee4;
    margin-bottom: 25px;
    transition: all 300ms ease;
    background-color: rgba(255, 255, 255, 0.06);
}
.art-root-service-highlights .highlight-card h3 {
    
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 15px;
    transition: color 300ms ease;
}
.art-root-service-highlights .highlight-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.6;
    margin: 0;
}
.art-root-service-highlights .highlight-card .card-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #27aee4;
    transition: width 300ms ease;
}

/* Hover States */
.art-root-service-highlights .highlight-card:hover {
    border-color: rgba(39, 174, 228, 0.25);
    transform: translateY(-4px);
}
.art-root-service-highlights .highlight-card:hover .card-icon {
    color: #ff479b;
    border-color: #ff479b;
    background-color: rgba(255, 71, 155, 0.1);
}
.art-root-service-highlights .highlight-card .card-icon i {
    transition: transform 0.4s ease;
    display: inline-block;
}
.art-root-service-highlights .highlight-card:hover .card-icon i {
    transform: rotateY(180deg);
}
.art-root-service-highlights .highlight-card:hover h3 {
    color: #27aee4;
}
.art-root-service-highlights .highlight-card:hover .card-accent-line {
    width: 35%;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .art-root-service-highlights {
         padding: 60px 0; 
    }
    .art-root-service-highlights .highlight-col {
        margin-bottom: 24px;
    }
    .art-root-service-highlights .highlight-card {
        padding: 30px 24px;
    }
}
/* FAQs Section (From Homepage) */
.artroot-faqs {
    background-color: #171717;
    position: relative;
}
.artroot-faqs .faq-split-row {
    display: flex;
    gap: 40px;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 40px;
}
.artroot-faqs .faq-left-col {
    flex: 1 1 350px;
}
.artroot-faqs .faq-right-col {
    flex: 1.5 1 500px;
}
.artroot-faqs .faq-visual-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    z-index: 1;
}
.artroot-faqs .faq-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: transform 0.6s ease;
}
.artroot-faqs .faq-visual-card:hover .faq-visual-bg {
    transform: scale(1.05);
}
.artroot-faqs .faq-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.4) 100%);
    z-index: -1;
}
.artroot-faqs .faq-visual-content {
    position: relative;
    z-index: 2;
}
.artroot-faqs .faq-visual-content h3 {
    font-family: "Oswald", sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}
.artroot-faqs .faq-visual-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    color: #d1d1d1;
    line-height: 1.6;
    margin-bottom: 25px;
}
.artroot-faqs .faq-visual-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #ffffff;
    background-color: #ff479b;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.artroot-faqs .faq-visual-btn:hover {
    background-color: #27aee4;
    transform: translateY(-2px);
}
.artroot-faqs .faq-visual-btn span {
    font-size: 11px;
    transition: transform 0.3s ease;
}
.artroot-faqs .faq-visual-btn:hover span {
    transform: translateX(4px);
}
.artroot-faqs .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.artroot-faqs .faq-item {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.artroot-faqs .faq-item:hover {
    border-color: rgba(255, 71, 155, 0.1);
}
.artroot-faqs .faq-header {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    gap: 15px;
}
.artroot-faqs .faq-title-box {
    display: flex;
    align-items: center;
    gap: 20px;
}
.artroot-faqs .faq-num {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.3s ease;
}
.artroot-faqs .faq-question {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    transition: color 0.3s ease;
}
.artroot-faqs .faq-toggle-icon {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.artroot-faqs .faq-toggle-icon::before,
.artroot-faqs .faq-toggle-icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    transition: transform 0.3s ease;
}
.artroot-faqs .faq-toggle-icon::before {
    width: 12px;
    height: 2px;
}
.artroot-faqs .faq-toggle-icon::after {
    width: 2px;
    height: 12px;
}
.artroot-faqs .faq-item.active {
    border-color: rgba(255, 71, 155, 0.2);
    background-color: #141414;
}
.artroot-faqs .faq-item.active .faq-num {
    color: #ff479b;
}
.artroot-faqs .faq-item.active .faq-question {
    color: #ff479b;
    font-weight: 600;
}
.artroot-faqs .faq-item.active .faq-toggle-icon {
    color: #ff479b;
}
.artroot-faqs .faq-item.active .faq-toggle-icon::after {
    transform: rotate(90deg) scale(0);
}
.artroot-faqs .faq-body-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.artroot-faqs .faq-item.active .faq-body-collapse {
    max-height: 300px;
}
.artroot-faqs .faq-body-inner {
    padding: 0 28px 24px 63px;
}
.artroot-faqs .faq-answer {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

@media screen and (max-width: 991px) {
    .artroot-faqs .faq-split-row {
        flex-direction: column;
    }
    .artroot-faqs .faq-visual-card {
        min-height: 300px;
        padding: 30px;
    }
}
@media screen and (max-width: 575px) {
    .artroot-faqs .faq-body-inner {
        padding: 0 20px 20px 20px;
    }
    .artroot-faqs .faq-header {
        padding: 18px 20px;
    }
}

/* --- Our Work Gallery Section --- */
.art-root-our-work-gallery {
    background-color: #171717; /* Matches subpage backdrops */
    position: relative;
    width: 100%;
}
.art-root-our-work-gallery .header-col {
    margin-bottom: 50px;
}
.art-root-our-work-gallery .section-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.7;
    max-width: 720px;
    margin: 20px auto 0 auto;
}

/* Portfolio Filter Navigation Wrapper */
.art-root-our-work-gallery .portfolio-filter-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 15px;
    margin-bottom: 50px;
    position: relative;
}

/* Scroll Viewport hiding actual scrollbar UI */
.art-root-our-work-gallery .portfolio-filter-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
}
.art-root-our-work-gallery .portfolio-filter-viewport::-webkit-scrollbar {
    display: none !important; /* Safari/Chrome */
}

/* Horizontal Track */
.art-root-our-work-gallery .portfolio-filter-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px 18px;
    width: 100%;
    padding: 10px 0;
}

/* Navigation Arrow Controls */
.art-root-our-work-gallery .filter-nav-arrow {
    width: 36px;
    height: 36px;
    border-radius: 4px; /* Rounded square instead of 50% circular shape */
    border: 1px solid #27aee4;
    background-color: #27aee4; /* Solid brand blue background color */
    outline: none;
    color: #ffffff; /* White icon for visibility and contrast */
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: all 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    user-select: none;
}
.art-root-our-work-gallery .filter-nav-arrow.disabled {
    opacity: 0.15;
    cursor: not-allowed;
    pointer-events: none;
}
.art-root-our-work-gallery .filter-nav-arrow.invisible {
    display: none !important;
}
.art-root-our-work-gallery .filter-prev:hover {
    background-color: #ff479b; /* Cohesive pink branding accent on hover */
    border-color: #ff479b;
    color: #ffffff;
    transform: translateX(-3px);
}
.art-root-our-work-gallery .filter-next:hover {
    background-color: #ff479b;
    border-color: #ff479b;
    color: #ffffff;
    transform: translateX(3px);
}

@media (min-width: 1400px) {
    .art-root-our-work-gallery .portfolio-filter-nav {
        justify-content: center;
    }
}
.art-root-our-work-gallery .filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 18px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
    white-space: nowrap;
}
.art-root-our-work-gallery .filter-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}
.art-root-our-work-gallery .filter-btn.active {
    color: #27aee4;
    background: rgba(39, 174, 228, 0.08);
    border-color: rgba(39, 174, 228, 0.3);
    font-weight: 600;
}

/* Pinterest Masonry Grid via Isotope */
.art-root-our-work-gallery .masonry-grid {
    position: relative;
    width: 100%;
}
.art-root-our-work-gallery .masonry-sizer,
.art-root-our-work-gallery .masonry-item {
    width: calc(25% - 15px);
    margin-bottom: 20px;
}
.art-root-our-work-gallery .masonry-item {
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #000000;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.art-root-our-work-gallery .masonry-item a {
    display: block;
    width: 100%;
    overflow: hidden;
}
.art-root-our-work-gallery .masonry-item img {
    width: 100%;
    height: auto; /* natural height flow */
    display: block;
    transition: transform 300ms ease;
}
.art-root-our-work-gallery .masonry-item:hover img {
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .art-root-our-work-gallery .masonry-sizer,
    .art-root-our-work-gallery .masonry-item {
        width: calc(33.333% - 13.33px);
    }
}
@media (max-width: 991px) {
    .art-root-our-work-gallery {
         padding: 60px 0; 
    }
    .art-root-our-work-gallery .masonry-sizer,
    .art-root-our-work-gallery .masonry-item {
        width: calc(50% - 10px);
    }
    .art-root-our-work-gallery .portfolio-filter-nav {
        gap: 10px 18px;
    }
}
@media (max-width: 575px) {
    .art-root-our-work-gallery .masonry-sizer,
    .art-root-our-work-gallery .masonry-item {
        width: 100%;
    }
}

/* Position Scroll-to-Top Button on the Left Side */
.progress-wrap {
    right: auto !important;
    left: 30px !important;
}

/* ==========================================================================
   Option 2: Full-Width Service Details Landing Page Styles
   ========================================================================== */
.art-root-service-v2 {
    background-color: #171717;
    color: #ffffff;
}

/* Service Introduction */
.art-root-service-v2 .intro-section {
     padding: 60px 0; 
}
.art-root-service-v2 .intro-img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.art-root-service-v2 .intro-content {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
@media (max-width: 991px) {
    .art-root-service-v2 .intro-content {
        padding-left: 0;
        margin-top: 40px;
    }
}
.art-root-service-v2 .intro-content .intro-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #27aee4;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.art-root-service-v2 .intro-content h2 {
  
    font-size: 36px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #ffffff;
}
.art-root-service-v2 .intro-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 20px; /* Compact gap between paragraphs */
}
.art-root-service-v2 .intro-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    margin-bottom: 35px;
    margin-top: 25px;
}
@media (max-width: 575px) {
    .art-root-service-v2 .intro-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
.art-root-service-v2 .feature-item {
    display: flex;
    align-items: center;
}
.art-root-service-v2 .feature-title {
    
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    position: relative;
    padding-left: 22px;
}
.art-root-service-v2 .feature-title::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #27aee4;
    font-weight: bold;
}
.art-root-service-v2 .intro-content .intro-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 12px 30px;
    background-color: #27aee4;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.art-root-service-v2 .intro-content .intro-cta:hover {
    background-color: #ff479b;
    transform: translateY(-2px);
}

/* Key Highlights Section */
.art-root-service-v2 .highlights-section {
      padding: 60px 0;  
    background-color: #121212;
}
.art-root-service-v2 .grid-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
@media (max-width: 991px) {
    .art-root-service-v2 .grid-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .art-root-service-v2 .grid-highlights {
        grid-template-columns: 1fr;
    }
}
.art-root-service-v2 .highlight-card-v2 {
    position: relative;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    overflow: hidden;
}
.art-root-service-v2 .highlight-card-v2:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(39, 174, 228, 0.3);
    transform: translateY(-5px);
}
.art-root-service-v2 .highlight-card-v2 .card-num {
    position: absolute;
    top: 25px;
    right: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    transition: color 0.3s ease;
}
.art-root-service-v2 .highlight-card-v2:hover .card-num {
    color: rgba(39, 174, 228, 0.2);
}
.art-root-service-v2 .highlight-card-v2 .card-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #27aee4;
    font-size: 20px;
    transition: all 0.3s ease;
}
.art-root-service-v2 .highlight-card-v2:hover .card-icon {
    background-color: #27aee4;
    color: #ffffff;
    border-color: #27aee4;
    transform: rotateY(180deg);
}
.art-root-service-v2 .highlight-card-v2 h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}
.art-root-service-v2 .highlight-card-v2 p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.6;
    margin: 0;
}

/* Ideal For / Applications Section */
.art-root-service-v2 .applications-section {
      padding: 60px 0;  
}
.art-root-service-v2 .apps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
    margin-top: 50px;
}
@media (max-width: 991px) {
    .art-root-service-v2 .apps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0 30px;
    }
}
@media (max-width: 767px) {
    .art-root-service-v2 .apps-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
.art-root-service-v2 .app-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 300ms ease;
}
.art-root-service-v2 .app-item:hover {
    background-color: transparent;
    border-bottom-color: rgba(39, 174, 228, 0.4);
    transform: translateY(-2px);
}
.art-root-service-v2 .app-item .app-name-box {
    display: flex;
    align-items: center;
    gap: 25px;
}
.art-root-service-v2 .app-item .app-num {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
    line-height: 1;
    transition: all 300ms ease;
}
.art-root-service-v2 .app-item:hover .app-num {
    color: #27aee4;
}
.art-root-service-v2 .app-item .app-name {
    
    font-size: 19px;
    font-weight: 400;
    color: #ffffff;
    transition: all 300ms ease;
}
.art-root-service-v2 .app-item .app-arrow {
    color: rgba(255, 255, 255, 0.2);
    font-size: 16px;
    transition: all 300ms ease;
}
.art-root-service-v2 .app-item:hover .app-arrow {
    color: #27aee4;
    transform: translateX(5px);
}

/* Process Section */
.art-root-service-v2 .process-section {
      padding: 60px 0;  
    background-color: #121212;
}
.art-root-service-v2 .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
}
.art-root-service-v2 .process-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    border-top: 2px dotted rgba(39, 174, 228, 0.6); /* Brand blue accent color for high visibility */
    transform: translateY(-50%);
    z-index: 1;
}
@media (max-width: 991px) {
    .art-root-service-v2 .process-grid::before {
        display: none;
    }
    .art-root-service-v2 .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}
@media (max-width: 767px) {
    .art-root-service-v2 .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        position: relative;
        padding-left: 30px;
    }
    .art-root-service-v2 .process-grid::before {
        display: block;
        top: 20px;
        bottom: 20px;
        left: 10px;
        right: auto;
        width: 2px;
        height: auto;
        border-top: none;
        border-left: 2px dotted rgba(39, 174, 228, 0.6);
        transform: none;
    }
}
.art-root-service-v2 .process-step-item {
    position: relative;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 35px 25px;
    text-align: center;
    transition: all 300ms ease;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.art-root-service-v2 .process-step-item:hover {
    background-color: #171717; /* Solid highlight masking line */
    border-bottom-color: #27aee4;
    transform: translateY(-3px);
}
.art-root-service-v2 .process-step-item .step-icon {
    width: 60px;
    height: 60px;
    background-color: #121212; /* Solid background matching section container to mask line behind the circle */
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff; /* White icon color */
    margin-bottom: 20px;
    position: relative;
    z-index: 3; /* sits above the grid line */
    transition: all 300ms ease;
}
.art-root-service-v2 .process-step-item:hover .step-icon {
    background-color: #27aee4;
    border-color: #27aee4;
    color: #ffffff;
    transform: translateY(-2px);
}
.art-root-service-v2 .process-step-item .step-title {
    
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 12px;
}
.art-root-service-v2 .process-step-item .step-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    color: #a0a0a0;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 767px) {
    .art-root-service-v2 .process-step-item {
        text-align: left;
        align-items: flex-start;
        padding: 30px 20px;
    }
}

/* Advantage Section */
.art-root-service-v2 .advantage-section {
      padding: 60px 0;  
}
.art-root-service-v2 .advantage-box {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    padding: 50px 60px;
    display: flex;
    gap: 60px;
    align-items: center;
    background: #000;
}
@media (max-width: 991px) {
    .art-root-service-v2 .advantage-box {
        flex-direction: column;
        padding: 40px 30px;
    }
}
.art-root-service-v2 .advantage-left {
    flex: 1.2;
}
.art-root-service-v2 .advantage-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.art-root-service-v2 .advantage-left h3 {
    
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff;
}
.art-root-service-v2 .advantage-left p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.8;
    margin: 0;
}
.art-root-service-v2 .advantage-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
}
@media (max-width: 991px) {
    .art-root-service-v2 .advantage-right {
        width: 100%;
        margin-top: 40px;
    }
}
@media (max-width: 575px) {
    .art-root-service-v2 .advantage-right {
        grid-template-columns: 1fr;
        gap: 30px 0;
    }
}
.art-root-service-v2 .advantage-metric {
    border-left: 2px solid #27aee4;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.art-root-service-v2 .advantage-metric .metric-val {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0;
}
.art-root-service-v2 .advantage-metric .val-suffix {
    color: #27aee4;
}
.art-root-service-v2 .advantage-metric .metric-label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Final CTA Section */
.art-root-service-v2 .final-cta-section {
    padding: 120px 0;
    background-image: linear-gradient(rgba(17, 17, 17, 0.85), rgba(17, 17, 17, 0.85)), url('../img/slider/1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.art-root-service-v2 .cta-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
@media (max-width: 575px) {
    .art-root-service-v2 .cta-buttons-wrapper {
        flex-direction: column;
        gap: 15px;
    }
}
.art-root-service-v2 .final-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}
.art-root-service-v2 .final-cta-btn.primary-btn {
    background-color: #27aee4;
    border: 1px solid #27aee4;
    color: #ffffff;
}
.art-root-service-v2 .final-cta-btn.primary-btn:hover {
    background-color: #ff479b;
    border-color: #ff479b;
    transform: translateY(-2px);
}
.art-root-service-v2 .final-cta-btn.secondary-btn {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}
.art-root-service-v2 .final-cta-btn.secondary-btn:hover {
    border-color: #25d366;
    background-color: rgba(37, 211, 102, 0.05);
    color: #25d366;
    transform: translateY(-2px);
}

/* Service Work Gallery Background Specific Override */
.art-root-service-v2 .art-root-service-work-gallery {
    background-color: #000 !important;
}

/* FAQs Section Background Override */
.art-root-service-v2 section#faqs {
    background: #000 !important;
}
