/*--------------------------------------------------------------
# About Section Redesign - Corporate
--------------------------------------------------------------*/
.about-redesign {
    background: var(--color-bg-section, #161b26);
    color: var(--color-text-body, #cbd5e1);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Corporate gradient overlay */
.about-redesign::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at 80% 20%,
        rgba(0, 102, 204, 0.06) 0%,
        transparent 60%
    );
    z-index: 0;
    pointer-events: none;
}

.about-redesign::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(0, 102, 204, 0.04) 0%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.about-redesign .container {
    position: relative;
    z-index: 1;
}

/* Left Column: Content */
.about-content {
    padding: 0 15px;
}

.about-subtitle {
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-accent, #0066cc);
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: var(--font-heading);
    position: relative;
    padding-bottom: 8px;
}

.about-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-primary, linear-gradient(135deg, #0066cc 0%, #0052a3 100%));
}

.about-content h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-primary, #fff);
    margin-bottom: 28px;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    max-width: 700px;
}

.about-content p {
    font-size: 17px;
    color: var(--color-text-body, #cbd5e1);
    line-height: 1.75;
    margin-bottom: 24px;
}

.about-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-primary, #fff);
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.about-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 32px;
    display: grid;
    gap: 16px;
}

.about-content ul li {
    position: relative;
    padding-left: 32px;
    padding: 16px 16px 16px 48px;
    color: var(--color-text-body, #cbd5e1);
    line-height: 1.6;
    background: rgba(0, 102, 204, 0.03);
    border-left: 3px solid var(--color-accent, #0066cc);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.about-content ul li:hover {
    background: rgba(0, 102, 204, 0.06);
    transform: translateX(4px);
}

.about-content ul li::before {
    content: "✓";
    color: var(--color-accent, #0066cc);
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    left: 18px;
    top: 16px;
}

.about-content strong {
    color: var(--color-primary, #fff);
    font-weight: 600;
}

/* Read More Collapsible Content */
.about-more-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.4s ease-out, margin 0.4s ease-out;
    opacity: 0;
}

.about-more-content.expanded {
    max-height: 3000px;
    opacity: 1;
    margin-top: 24px;
    transition: max-height 0.6s ease-in, opacity 0.5s ease-in 0.1s, margin 0.4s ease-in;
}

/* Read More Button */
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--color-accent, #0066cc);
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 24px;
    border: 2px solid var(--color-accent, #0066cc);
    font-family: var(--font-heading);
    letter-spacing: 0.3px;
    cursor: pointer;
    position: relative;
}

.btn-read-more:hover {
    background: rgba(0, 102, 204, 0.08);
    transform: translateX(4px);
}

.btn-read-more .read-more-icon {
    transition: transform 0.3s ease;
    font-size: 16px;
}

.btn-read-more.active .read-more-icon {
    transform: rotate(180deg);
}

/* Call Button - Corporate */
.btn-consultation {
    display: inline-block;
    background: var(--color-accent, #0066cc);
    color: #fff;
    padding: 14px 36px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 32px;
    border: 2px solid transparent;
    font-family: var(--font-heading);
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-consultation:hover {
    background: var(--color-accent-hover, #0052a3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
    color: #fff;
}

/* Right Column: Image/Graphic */
.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    /* Optional: Add a border or effect to match the "tech" vibe */
    border: 1px solid #333;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .about-image-wrapper {
        margin-top: 30px;
    }
}

/* Partners Slider Placeholder Styles */
.logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    color: #888; /* Gray text */
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.05); /* Faint gray border */
    text-transform: uppercase;
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
    cursor: default;
    filter: grayscale(100%);
    opacity: 0.6;
}

.logo-placeholder:hover,
.clients-slider .swiper-slide img:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
    filter: none;
    opacity: 1;
}

/* Ensure images match the gray style */
.clients-slider .swiper-slide img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
    max-height: 60px; /* Consitent height constraint */
    width: auto;
}

/* Linear easing for smooth marquee */
.clients-slider .swiper-wrapper {
    transition-timing-function: linear;
}