/* Custom Services Section Styles - Dark Theme */
.custom-services-section {
    padding: 40px 0;
    background: #171717;
    /* Neutral 3 */
}

/* Sticky Sidebar */
.services-sticky-sidebar {
    position: sticky;
    top: 120px;
    /* Adjust based on header height */
    height: fit-content;
    padding-right: 20px;
}

.services-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.services-subtitle .line {
    width: 40px;
    height: 2px;
    background-color: var(--primary-color, #FA7436);
}

.services-subtitle h4 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color, #FA7436);
    margin: 0;
}

.services-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    color: #FFFFFF;
    /* White for dark mode */
    margin-bottom: 24px;
    text-transform: uppercase;
}

.services-description {
    font-size: 18px;
    color: #BBBBB9;
    /* Light gray for dark mode */
    margin-bottom: 40px;
    line-height: 1.6;
}

.services-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Scroll Content - Service Cards Animation */
/* This wrapper provides the scroll distance */
.services-scroll-wrapper {
    height: 350vh;
    /* Adjust based on number of cards. 5 cards * ~70vh scroll each */
    position: relative;
    /* Ensure content is centered if needed */
}

/* This container stays sticky in the viewport to show the cards */
.services-card-viewer {
    position: sticky;
    top: 150px;
    /* Aligns with the sidebar */
    height: auto;
    min-height: 500px;
    width: 100%;
}

.service-card-item {
    background: #1d1d1d;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    /* Initial State (Active/Default opacity logic handled by JS) */
    opacity: 0;
    transform: translateY(100px) scale(0.95);
    z-index: 1;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color, #00AEEF);

}

/* Visible State (Active Card) */
.service-card-item.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    z-index: 10;
    pointer-events: all;
}

/* Previous Card (Scrolled Past) */
.service-card-item.is-above {
    opacity: 0;
    transform: translateY(-50px) scale(0.95);
    z-index: 5;
    pointer-events: none;
}

/* Next Card (Coming Up) */
.service-card-item.is-below {
    opacity: 0;
    transform: translateY(100px) scale(0.95);
    z-index: 6;
    pointer-events: none;
}


.service-card-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color, #FA7436);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #252525;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.service-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.service-card-item:hover .service-icon {
    background: var(--primary-color, #FA7436);
}

.service-card-hover-icon {
    display: none;
}

.service-card-default-icon {
    color: #00AEEF;
    font-size: 30px;
}

.service-card-hover-icon {
    font-size: 30px;
}

.service-card-item:hover .service-card-default-icon {
    display: none;
}

.service-card-item:hover .service-card-hover-icon {
    display: block;
    filter: brightness(0) invert(1);
}

.service-card-number {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
}

.service-card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.service-card-desc {
    font-size: 16px;
    color: #BBBBB9;
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.read-more-btn {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.read-more-btn i {
    font-size: 18px;
}

.read-more-btn:hover {
    color: var(--primary-color, #FA7436);
    gap: 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .services-sticky-sidebar {
        position: static;
        margin-bottom: 50px;
    }

    .services-scroll-wrapper {
        height: auto;
    }

    .services-card-viewer {
        position: static;
        height: auto;
        min-height: auto;
    }

    .service-card-item {
        position: relative;
        opacity: 1;
        transform: none !important;
        margin-bottom: 20px;
        pointer-events: all;
    }
}

/* Brand Enhancement Section */
.brand-enhancement-section {
    padding: 100px 0 50px;
    background: #171717;
}



.brand-enhancement-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}

@media (min-width: 992px) {
    .brand-enhancement-header h2 {
        font-size: 75px;
    }
}

.brand-enhancement-header .highlight {
    color: #00AEEF;
    /* Lime Green Primary */
}

.brand-enhancement-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /* Optional: Add a subtle border or shadow */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.brand-enhancement-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.brand-enhancement-image:hover img {
    transform: scale(1.02);
}

/* Partners Trust Section */
.partners-trust-section {
    padding: 60px 0;
    background: #121212;
    /* Darker than brand section */
    text-align: center;
}

.partners-header {
    margin-bottom: 60px;
}

.partners-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.partners-label i {
    color: #00AEEF;
}

.partners-title {
    font-size: 75px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 24px;
}

.partners-title .highlight {
    color: #00AEEF;
}

.partners-desc {
    font-size: 16px;
    color: #BBBBB9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    /* Reduced gap for mobile */
}

@media (max-width: 480px) {
    .partners-grid {
        gap: 10px;
        /* Even smaller gap for very small screens */
    }
}

@media (min-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(6, 1fr);
        /* 6 columns as requested */
    }
}

.partner-item {
    background: #f5f3f3;
    padding: 30px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 120px;
}

.partner-item.black-logo {
    background: #121212;
}

/* .partner-item:hover {
    background: #1d1d1d;
    border-color: #00AEEF;
    transform: translateY(-5px);
} */

.partner-item img {
    max-width: 80%;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Client Feedback Section */
.client-feedback-section {
    background-color: #0b0b0b;
}

.feedback-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    padding: 10px;
}

.feedback-card:hover {
    transform: translateY(-5px);
}

.feedback-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    max-height: 500px;
    object-fit: contain;
}