/* About Page Custom Styles */

/* Service Single Card Adjustments */
.service__single__4 {
    -webkit-clip-path: none;
    clip-path: none;
    /*height: 437px;*/
    padding: 12px;
}

.service__single__4 p {
    font-size: 16px;
    line-height: 23px;
    text-align: justify;
}

/* Mission & Vision Card Equal Heights */
.service__single__wraper {
    height: 100%;
}

/* Mission & Vision / Values Card Image Styles */
.service__img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #667eea;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.2);
    margin-bottom: 20px;
}

/* Technology Stack Card Styles */
.tech-stack-card {
    position: relative;
    padding: 35px 25px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 16px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.12);
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/*.tech-stack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}*/

.tech-stack-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.25);
    border-color:#0c800c;
}

.tech-stack-card:hover::before {
    opacity: 1;
}

.tech-stack-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0c800c;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
}

.tech-stack-card:hover .tech-stack-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.tech-stack-icon i {
    font-size: 32px;
    color: #ffffff;
}

.tech-stack-card h6 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    background: #0c800c;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.tech-stack-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin: 0;
    font-weight: 500;
}

.tech-stack-description {
    font-size: 13px;
    color: #777;
    margin-top: 8px;
    font-weight: 400;
}

/* Why GlobalsBrain Visual Anchors */
.why-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.why-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.8;
}

.why-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #0c800c;
    font-weight: bold;
}

/* Values Section Scan-Friendly Format */
.value-highlight {
    font-weight: 700;
    color: #1a1a2e;
}

/* Metrics Disclaimer */
.metrics-disclaimer {
    text-align: center;
    font-size: 13px;
    color: #777;
    margin-top: 20px;
    font-style: italic;
}

/* Bottom CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #008d00b3 0%, #0c800c 100%);
}

.cta-section h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 18px;
}

/* Industries Carousel Wrapper */
.industries-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.industries-carousel {
    display: flex;
    gap: 25px;
    animation: scroll-left 40s linear infinite;
    width: fit-content;
}

.industries-carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Industries Section */
.industry-card {
    text-align: center;
    padding: 30px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-width: 180px;
    flex-shrink: 0;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0c800c;
    border-radius: 50%;
}

.industry-icon i {
    font-size: 28px;
    color: #ffffff;
}

.industry-card h5 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tech-stack-card {
        padding: 30px 20px;
    }

    .tech-stack-icon {
        width: 60px;
        height: 60px;
    }

    .tech-stack-icon i {
        font-size: 28px;
    }

    .cta-section h3 {
        font-size: 24px;
    }

    .cta-section p {
        font-size: 16px;
    }
}