/* Card Components */
.card-shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.card-shadow:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-wrapper {
    position: relative;
    display: block;
}

.card-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #20b0a0, #1a6e80);
    border-radius: 12px;
    z-index: -1;
    transform: translate(20px, 20px) rotate(-3deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(34, 138, 168, 0.1);
}

.card-wrapper:hover::before {
    transform: translate(15px, 15px) rotate(0deg);
    box-shadow: 0 20px 40px rgba(34, 138, 168, 0.2);
}

.card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    border: 1px solid white;
    transform: rotate(2deg) translate(5px, 5px);
    overflow: hidden;
}

.card:hover {
    transform: rotate(0deg) translateY(-3px);
    border-color: #228aa8;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 12px;
    border-radius: 0;
}

.card h3 {
    color: #1D64AB;
    background: -webkit-gradient(linear, left top, right top, from(#1D64AB), to(#29A9A5));
    background: linear-gradient(to right, #1D64AB, #29A9A5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.card p {
    color: #6b7280;
    margin-bottom: 12px;
}

/* Featured Articles Layout Adjustments */
.article-card.featured .article-content,
.article-card .article-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card .article-content h3 {
    flex-grow: 1;
    margin-bottom: 20px;
}

.article-card .btn.article-read-more {
    margin-top: auto;
    align-self: flex-start;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.card-link {
    color: #228aa8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #1e7a8c;
}

/* Service Cards */
.service-card {
    text-align: center;
}

.card-header {
    margin-bottom: 12px;
}

.service-features {
    list-style: none;
    margin: 12px 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    color: #6b7280;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Feature Tags */
.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.feature-tag {
    background-color: #ecfdf5;
    color: #228aa8;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Stats Components */
.stat {
    text-align: center;
    padding: 12px;
}

.stat h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #228aa8;
    margin-bottom: 4px;
}

.stat p {
    color: #6b7280;
    font-weight: 500;
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #228aa8, #2dd4bf);
    color: white;
    padding: 32px 24px;
    border-radius: 16px;
    margin: 24px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 8px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 16px;
}

/* Testimonial Components */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #228aa8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-logo {
    text-align: center;
    margin-bottom: 20px;
    padding: 16px 0;
}

.customer-logo-large {
    width: 160px;
    height: 120px;
    object-fit: contain;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: #ffffff;
    padding: 12px;
}

.customer-logo-large:hover {
    border-color: #228aa8;
    box-shadow: 0 6px 20px rgba(34, 138, 168, 0.2);
    transform: scale(1.02);
}

.testimonial-content {
    margin-bottom: 12px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.125rem;
    color: #374151;
    margin: 0;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.author-info h4 {
    color: #1D64AB;
    background: -webkit-gradient(linear, left top, right top, from(#1D64AB), to(#29A9A5));
    background: linear-gradient(to right, #1D64AB, #29A9A5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
    font-size: 1rem;
}

.author-info p {
    color: #6b7280;
    margin-bottom: 4px;
    font-size: 0.875rem;
}

.location {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Interactive Testimonials Animation System */
.interactive-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
    padding: 20px 0;
}

.interactive-testimonial-card {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    overflow: hidden;
    min-height: 250px;
    outline: none;
}

.interactive-testimonial-card:focus {
    border-color: #228aa8;
    box-shadow: 0 0 0 3px rgba(34, 138, 168, 0.2);
}

/* Compact State (Default) */
.testimonial-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 250px;
    padding: 24px;
    transition: all 0.4s ease;
    position: relative;
}

.compact-logo {
    width: 140px;
    height: 105px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid #e2e8f0;
}

.hover-indicator {
    margin-top: 16px;
    text-align: center;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hover-text {
    display: block;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.expand-icon {
    color: #228aa8;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(34, 138, 168, 0.1);
    border-radius: 50%;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

/* Expanded State (On Hover) */
.testimonial-expanded {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    padding: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 2;
    min-height: 400px;
    overflow-y: auto;
    overflow: hidden;
}

.expanded-header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.expanded-logo {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

.testimonial-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.testimonial-text blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    margin: 0;
    padding: 0;
    text-align: left;
    hyphens: auto;
    word-wrap: break-word;
    border: none;
    background: none;
    position: relative;
}

.testimonial-text p {
    margin: 0;
    padding: 0;
}

.testimonial-text blockquote::before {
    content: '"';
    font-size: 1.5em;
    color: #228aa8;
    position: absolute;
    left: -0.3em;
    top: -0.1em;
    font-family: Georgia, serif;
}

.testimonial-text blockquote::after {
    content: '"';
    font-size: 1.5em;
    color: #228aa8;
    font-family: Georgia, serif;
}

.testimonial-author {
    margin-top: auto;
    flex-shrink: 0;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.author-name {
    color: #1D64AB;
    background: linear-gradient(to right, #1D64AB, #29A9A5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    display: block;
    width: 100%;
    flex-basis: 100%;
    flex-shrink: 0;
    clear: both;
}

.author-name strong {
    background: linear-gradient(to right, #1D64AB, #29A9A5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.author-title {
    color: #6b7280;
    margin-bottom: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    display: block;
    width: 100%;
    flex-basis: 100%;
    flex-shrink: 0;
    clear: both;
    text-align: left;
}

.author-location {
    color: #9ca3af;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.4;
    display: block;
    width: 100%;
    flex-basis: 100%;
    flex-shrink: 0;
    clear: both;
    text-align: left;
}

/* Hover Effects */
.interactive-testimonial-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 40px rgba(34, 138, 168, 0.15);
    border-color: #228aa8;
    z-index: 10;
    min-height: 450px;
}

.interactive-testimonial-card:hover .testimonial-compact {
    opacity: 0;
    transform: translateY(-20px);
}

.interactive-testimonial-card:hover .testimonial-expanded {
    opacity: 1;
    transform: translateY(0);
}

.interactive-testimonial-card:hover .compact-logo {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(34, 138, 168, 0.2);
}

.interactive-testimonial-card:hover .hover-indicator {
    opacity: 1;
}

.interactive-testimonial-card:hover .expand-icon {
    transform: rotate(45deg);
    color: #1e7a8c;
    background: rgba(34, 138, 168, 0.2);
}

.expand-icon svg {
    transition: all 0.3s ease;
}

/* Focus States for Accessibility */
.interactive-testimonial-card:focus .testimonial-compact {
    opacity: 0;
    transform: translateY(-20px);
}

.interactive-testimonial-card:focus .testimonial-expanded {
    opacity: 1;
    transform: translateY(0);
}

/* Keyboard and Touch Expanded States */
.interactive-testimonial-card.keyboard-expanded .testimonial-compact,
.interactive-testimonial-card.touch-expanded .testimonial-compact {
    opacity: 0;
    transform: translateY(-20px);
}

.interactive-testimonial-card.keyboard-expanded .testimonial-expanded,
.interactive-testimonial-card.touch-expanded .testimonial-expanded {
    opacity: 1;
    transform: translateY(0);
}

.interactive-testimonial-card.keyboard-expanded,
.interactive-testimonial-card.touch-expanded {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 40px rgba(34, 138, 168, 0.15);
    border-color: #228aa8;
    z-index: 10;
    min-height: 450px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .interactive-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }
    
    .interactive-testimonial-card {
        min-height: 180px;
    }
    
    .testimonial-compact {
        height: 180px;
        padding: 20px;
    }
    
    .compact-logo {
        width: 100px;
        height: 75px;
    }
    
    .expanded-logo {
        width: 60px;
        height: 45px;
    }
    
    .testimonial-expanded {
        padding: 20px;
    }
    
    .testimonial-text p {
        font-size: 0.9rem;
    }
    
    .star {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .interactive-testimonial-card {
        min-height: 160px;
    }
    
    .testimonial-compact {
        height: 160px;
        padding: 16px;
    }
    
    .compact-logo {
        width: 80px;
        height: 60px;
    }
    
    .expanded-logo {
        width: 50px;
        height: 38px;
    }
    
    .testimonial-expanded {
        padding: 16px;
    }
    
    .hover-text {
        font-size: 0.75rem;
    }
    
    .expand-icon {
        font-size: 1.25rem;
    }
}

/* Case Study Components */
.case-study-card {
    position: relative;
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.industry-tag {
    background-color: #f3f4f6;
    color: #6b7280;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-study-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 12px 0;
    padding: 12px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.result {
    text-align: center;
}

.result h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #228aa8;
    margin-bottom: 2px;
}

.result p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* About Page Components */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.value-card {
    text-align: center;
    padding: 16px 12px;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 24px;
    align-items: start;
}

/* Double spacing for Salesforce and Certinia offerings */
.salesforce-offerings-grid,
.certinia-offerings-grid {
    gap: 32px;
}

.team-card {
    text-align: center;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-image {
    margin-bottom: 12px;
}

.team-image img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.team-card:hover .team-image img {
    transform: scale(1.1) rotate(3deg);
}

.team-role {
    color: #228aa8;
    font-weight: 500;
    margin-bottom: 12px;
}

.team-bio {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Timeline Component */
.timeline {
    position: relative;
    margin: 24px 0;
    padding: 12px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #f3f4f6;
    border-radius: 2px;
    transform: translateX(-50%);
    z-index: 1;
}

/* Animated progress line */
.timeline-progress-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    background: linear-gradient(to bottom, #228aa8, #2dd4bf);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: height 0.3s ease;
    z-index: 2;
    height: 0%;
}

.timeline-item {
    display: flex;
    width: 50%;
    margin-bottom: 24px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    align-items: center;
    padding: 0 10px;
}

.timeline-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.active .timeline-marker {
    background-color: #228aa8;
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 0 0 8px rgba(34, 138, 168, 0.2);
}

.timeline-item.active .timeline-year {
    background-color: #228aa8;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(34, 138, 168, 0.3);
}

.timeline-item.active .timeline-content {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}


/* Odd items - LEFT side of timeline */
.timeline-item:nth-child(odd) {
    margin-right: auto;
    flex-direction: row-reverse;
    text-align: right;
}




/* Even items - RIGHT side of timeline */
.timeline-item:nth-child(even) {
    margin-left: auto;
    flex-direction: row;
    text-align: left;
}




/* Timeline markers */
.timeline-marker {
    width: 16px;
    height: 16px;
    background-color: #e5e7eb;
    border: 4px solid white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    z-index: 3;
    cursor: pointer;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -8px;
}
.timeline-marker:hover {
    background-color: #228aa8;
    transform: scale(1.1);
}

.timeline-year {
    background-color: #228aa8;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 4;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(34, 138, 168, 0.3);
}

.timeline-item:nth-child(odd) .timeline-year {
    margin-left: 30px;
}

.timeline-item:nth-child(even) .timeline-year {
    margin-right: 30px;
}
.timeline-year:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(34, 138, 168, 0.4);
    background-color: #1e7a8c;
}

.timeline-content {
    background: white;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-grow: 1;
    max-width: 400px;
}

.timeline-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #228aa8;
}

.timeline-content h3 {
    color: #1f2937;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.timeline-item.active .timeline-content h3 {
    color: #228aa8;
}

.timeline-content p {
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.industry-card {
    background: white;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #228aa8;
}

.industry-card h3 {
    color: #1f2937;
    margin-bottom: 4px;
    font-size: 1.125rem;
}

.industry-card p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* Articles Components */
.article-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.article-card.featured {
    grid-column: span 2;
}

.article-image {
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 8px;
}

.article-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-category {
    background-color: #ecfdf5;
    color: #228aa8;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-content h3 {
    margin: 16px 0 12px;
    color: #1f2937;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    color: #9ca3af;
    font-size: 0.875rem;
}
/* Newsletter Signup */
.newsletter-signup {
    text-align: center;
    background: #f9fafb;
    padding: 24px;
    border-radius: 16px;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #228aa8;
    box-shadow: 0 0 0 3px rgba(34, 138, 168, 0.1);
}

/* Contact Page Components */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 24px;
}

.contact-form {
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #228aa8;
    box-shadow: 0 0 0 3px rgba(34, 138, 168, 0.1);
}

.recaptcha-note {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 8px;
    display: block;
}

.g-recaptcha {
    margin-bottom: 8px;
}

.contact-info-section {
    background: #f9fafb;
    padding: 16px;
    border-radius: 12px;
}

.contact-info {
    margin-bottom: 16px;
}

.contact-item {
    display: flex;
    margin-bottom: 12px;
    align-items: flex-start;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #f8fafc;
    border-radius: 12px;
    color: #228aa8;
    margin-right: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon:hover {
    background-color: #228aa8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 138, 168, 0.3);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details h3 {
    color: #1f2937;
    margin-bottom: 4px;
    font-size: 1.125rem;
}

.contact-details p {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.social-link-large {
    display: inline-block;
    padding: 12px 24px;
    background-color: #f8fafc;
    color: #228aa8;
    border: 2px solid #e2e8f0;
    text-decoration: none;
    border-radius: 8px;
    margin-right: 12px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.social-link-large:hover {
    background-color: #228aa8;
    color: white;
    border-color: #228aa8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 138, 168, 0.3);
}

.social-link-large svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* FAQ Components */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.faq-item {
    background: white;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    color: #1f2937;
    margin-bottom: 6px;
    font-size: 1.125rem;
}

.faq-item p {
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* Category Filter Buttons */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 0 16px;
}

.filter-btn {
    background-color: #f3f4f6;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    outline: none;
}

.filter-btn:hover {
    background-color: #228aa8;
    color: white;
    border-color: #228aa8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 138, 168, 0.3);
}

.filter-btn.active {
    background-color: #228aa8;
    color: white;
    border-color: #228aa8;
    box-shadow: 0 2px 8px rgba(34, 138, 168, 0.2);
}

.filter-btn.active:hover {
    background-color: #1e7a8c;
    border-color: #1e7a8c;
}

/* Article Card Enhancements */
.article-card {
    transition: all 0.3s ease;
    position: relative;
}

.article-card .card-link {
    display: inline-block;
    margin-top: 8px;
    color: #228aa8;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
}

.article-card .card-link:hover {
    color: #1e7a8c;
    transform: translateX(4px);
}

.article-card .card-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #228aa8;
    transition: width 0.3s ease;
}

.article-card .card-link:hover::after {
    width: calc(100% - 20px);
}

/* Article Read More Button */
.article-read-more {
    margin-top: 8px;
    display: inline-block;
    font-size: 0.875rem;
    padding: 8px 16px;
}

/* Featured Article Image Adjustments */
.article-card.featured .article-image img {
    height: 150px;
}

.article-card .article-image img {
    height: 150px;
}

/* Filter Animation */
.article-card.fade-out {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.article-card.fade-in {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

/* No Results Styling */
.no-results {
    text-align: center;
    padding: 32px 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.no-results.show {
    opacity: 1;
    transform: translateY(0);
}

.no-results-content h3 {
    color: #6b7280;
    margin-bottom: 6px;
    font-size: 1.5rem;
}

.no-results-content p {
    color: #9ca3af;
    margin-bottom: 12px;
    font-size: 1rem;
}

/* Article Page Styling */
.article-breadcrumb {
    margin-bottom: 8px;
}

.article-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.article-breadcrumb a:hover {
    color: white;
}

.article-meta {
    display: flex;
    gap: 24px;
    margin-top: 8px;
    font-size: 0.875rem;
    opacity: 0.9;
}

.article-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-main {
    max-width: none;
}

.article-image {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
}

.article-body .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.6;
}

.article-body h2 {
    font-size: 1.875rem;
    color: #1f2937;
    margin-top: 24px;
    margin-bottom: 12px;
}

.article-body h3 {
    font-size: 1.5rem;
    color: #228aa8;
    margin-top: 16px;
    margin-bottom: 8px;
}

.article-body h4 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-top: 12px;
    margin-bottom: 6px;
}

.article-body ul, .article-body ol {
    margin-bottom: 12px;
    padding-left: 24px;
}

.article-body li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.article-body blockquote {
    border-left: 4px solid #228aa8;
    padding: 12px;
    margin: 16px 0;
    background-color: #f8fafc;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 1.125rem;
}

.article-body blockquote cite {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-weight: 500;
    color: #228aa8;
    font-size: 0.875rem;
}

.success-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 16px 0;
    padding: 16px;
    background-color: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.metric {
    text-align: center;
}

.metric h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #228aa8;
    margin-bottom: 4px;
}

.metric p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.security-tip {
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
    padding: 10px;
    margin: 12px 0;
}

.security-tip h4 {
    color: #065f46;
    margin-bottom: 4px;
    font-size: 1rem;
}

.security-tip p {
    color: #047857;
    margin: 0;
    font-size: 0.875rem;
}

.implementation-timeline {
    margin: 16px 0;
}

.timeline-step {
    padding: 10px;
    margin-bottom: 8px;
    background-color: #f8fafc;
    border-left: 4px solid #228aa8;
    border-radius: 0 8px 8px 0;
}

.timeline-step h4 {
    color: #228aa8;
    margin-bottom: 4px;
    font-size: 1.125rem;
}

.timeline-step p {
    color: #6b7280;
    margin: 0;
    font-size: 0.875rem;
}

.article-tags {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.article-tags h4 {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tag {
    display: inline-block;
    background-color: #f3f4f6;
    color: #6b7280;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: #228aa8;
    color: white;
}

.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.related-articles {
    background-color: #f8fafc;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.related-articles h3 {
    color: #1f2937;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.related-article {
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.related-article:last-child {
    border-bottom: none;
}

.related-article a {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.related-article a:hover {
    transform: translateX(4px);
}

.related-article h4 {
    color: #228aa8;
    font-size: 1rem;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.related-article a:hover h4 {
    color: #1e7a8c;
}

.related-article p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.cta-sidebar {
    background: linear-gradient(135deg, #228aa8, #2dd4bf);
    color: white;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
}

.cta-sidebar h3 {
    color: white;
    margin-bottom: 6px;
    font-size: 1.25rem;
}

.cta-sidebar p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 0.875rem;
}

/* Embedded Contact Form Styles */
.embedded-contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px;
    margin-top: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.embedded-contact-form h3 {
    color: #1f2937;
    text-align: center;
    margin-bottom: 12px;
    font-size: 1.5rem;
    background: linear-gradient(to right, #1D64AB, #29A9A5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 10px;
}

.product-contact-form .form-group {
    margin-bottom: 10px;
}

.product-contact-form .form-group label {
    display: block;
    margin-bottom: 3px;
    color: #374151;
    font-weight: 500;
    font-size: 0.875rem;
}

.product-contact-form .form-group input,
.product-contact-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: white;
    box-sizing: border-box;
}

.product-contact-form .form-group input:focus,
.product-contact-form .form-group textarea:focus {
    outline: none;
    border-color: #228aa8;
    box-shadow: 0 0 0 3px rgba(34, 138, 168, 0.1);
    transform: translateY(-1px);
}

.product-contact-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 4px;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 138, 168, 0.3);
}

/* Responsive Design for Embedded Forms */
@media (max-width: 768px) {
    .embedded-contact-form {
        padding: 12px;
        margin-top: 12px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .embedded-contact-form h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.nav-link-article {
    color: #228aa8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link-article:hover {
    color: #1e7a8c;
}

.article-nav-buttons {
    display: flex;
    gap: 16px;
}

/* Client Logos Slider */
.client-logos-slider {
    overflow: hidden;
    padding: 16px 0;
    position: relative;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,1) 10%, 
        rgba(255,255,255,1) 90%, 
        rgba(255,255,255,0) 100%);
}

.logos-track {
    display: flex;
    animation: slide 30s linear infinite;
    width: calc(200px * 12 + 32px * 12); /* 12 logos with gaps */
}

.logos-track:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    margin-right: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.logo-item img {
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Product Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 24px 0;
    padding: 0 60px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    gap: 12px;
}

.carousel-slide {
    min-width: calc(33.333% - 8px);
    flex-shrink: 0;
    box-sizing: border-box;
}

.carousel-slide .card {
    max-width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.carousel-slide .card p {
    flex-grow: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid #228aa8;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #228aa8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background-color: #228aa8;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(34, 138, 168, 0.3);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-btn svg {
    height: 24px;
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-container {
        padding: 0 40px;
    }
    
    .carousel-track {
        gap: 16px;
    }
    .carousel-slide {
        min-width: calc(50% - 8px);
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 0 20px;
    }
    
    .carousel-track {
        gap: 0;
    }
    .carousel-slide {
        min-width: 100%;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 6 - 32px * 6)); /* Move by 6 logos */
    }
}

/* Fixed Quadrant Values Layout */
.values-quadrant-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 600px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px 10px;
}

.value-quadrant {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.value-quadrant.top-left {
    animation-delay: 0.2s;
}

.value-quadrant.top-right {
    animation-delay: 0.4s;
}

.value-quadrant.bottom-left {
    animation-delay: 0.6s;
}

.value-quadrant.bottom-right {
    animation-delay: 0.8s;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 138, 168, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(34, 138, 168, 0.15);
    border-color: #228aa8;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #228aa8, #2dd4bf);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #228aa8;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.value-icon svg {
    color: white;
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(34, 138, 168, 0.3);
}

.value-card:hover .value-icon svg {
    transform: rotate(5deg) scale(1.1);
}

.value-card h3 {
    font-size: 1.5rem;
    color: #1D64AB;
    background: -webkit-gradient(linear, left top, right top, from(#1D64AB), to(#29A9A5));
    background: linear-gradient(to right, #1D64AB, #29A9A5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.value-card:hover h3 {
    color: #1D64AB;
    background: -webkit-gradient(linear, left top, right top, from(#1D64AB), to(#29A9A5));
    background: linear-gradient(to right, #1D64AB, #29A9A5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.value-card:hover p {
    color: #4b5563;
}

.value-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #228aa8, #2dd4bf);
    transition: width 0.4s ease;
    z-index: 2;
}

.value-card:hover .value-highlight {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .values-quadrant-container {
        min-height: auto;
        padding: 20px 10px;
        gap: 12px;
    }
    
    .value-quadrant {
        min-width: 100%;
        max-width: 100%;
    }
    
    .value-card {
        padding: 12px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    
    .value-card h3 {
        font-size: 1.25rem;
        margin-bottom: 6px;
    }
    
    .value-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .values-quadrant-container {
        padding: 16px 8px;
        gap: 10px;
    }
    
    .value-card {
        padding: 10px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }
    
    .value-card h3 {
        font-size: 1.125rem;
    }
    
    .value-card p {
        font-size: 0.875rem;
    }
}

/* Remove old circular component animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Remove unused animations */
/*
@keyframes gentleRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes centerPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 8px 25px rgba(34, 138, 168, 0.2);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 12px 35px rgba(34, 138, 168, 0.3);
    }
}

@keyframes valueAppear {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
*/
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 138, 168, 0.1), transparent);
    transition: left 0.5s ease;
}

.value-item:hover .value-content::before {
    left: 100%;
}

.value-icon {
    color: #228aa8;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.value-content h4 {
    font-size: 1.25rem;
    color: #1f2937;
    margin: 0 0 8px 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.value-content p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

/* Hover Effects */
.value-item:hover {
    transform: scale(1.05);
    z-index: 5;
}

.value-item[data-angle="0"]:hover {
    transform: translate(0, -50%) scale(1.05);
}

.value-item[data-angle="90"]:hover {
    transform: translate(-50%, 0) scale(1.05);
}

.value-item[data-angle="180"]:hover {
    transform: translate(0, -50%) scale(1.05);
}

.value-item[data-angle="270"]:hover {
    transform: translate(-50%, 0) scale(1.05);
}

.value-item:hover .value-content {
    border-color: #228aa8;
    box-shadow: 0 8px 30px rgba(34, 138, 168, 0.2);
}

.value-item:hover .value-icon {
    color: #1e7a8c;
    transform: scale(1.1);
}

.value-item:hover .value-content h4 {
    color: #228aa8;
}

.value-item:hover .value-content p {
    color: #4b5563;
}

/* Video Hero Styles */
.video-hero {
    flex: 1;
    max-width: 600px;
}

.video-thumbnail {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(34, 138, 168, 0.2);
}

.video-thumbnail:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(34, 138, 168, 0.3);
}

.video-thumbnail img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(34, 138, 168, 0.9);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-thumbnail:hover .play-button {
    background: rgba(34, 138, 168, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(34, 138, 168, 0.4);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 32px 24px 24px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .video-overlay {
    transform: translateY(0);
}

.video-overlay h3 {
    color: white;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: white;
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.video-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.875rem;
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 50vw;
    height: 50vh;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Responsive Video Modal */
@media (max-width: 768px) {
    .video-modal-content {
        width: 90vw;
        height: 50vh;
        margin: 0 auto;
    }
    
    .video-modal-close {
        top: -35px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .video-thumbnail img {
        height: 250px;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-button svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .video-modal-content {
        width: 95vw;
        height: 45vh;
    }
    
    .video-modal-close {
        top: -30px;
        right: 5px;
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}
/* Animations */
@keyframes gentleRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes centerPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 8px 25px rgba(34, 138, 168, 0.2);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 12px 35px rgba(34, 138, 168, 0.3);
    }
}

@keyframes valueAppear {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .core-values-container {
        min-height: 500px;
        padding: 20px 10px;
    }
    
    .core-values-circle {
        width: 400px;
        height: 400px;
    }
    
    .center-element {
        width: 120px;
        height: 120px;
    }
    
    .center-element h3 {
        font-size: 0.875rem;
    }
    
    .value-item {
        width: 150px;
        height: 150px;
    }
    
    .value-item[data-angle="0"] {
        right: -75px;
    }
    
    .value-item[data-angle="90"] {
        bottom: -75px;
    }
    
    .value-item[data-angle="180"] {
        left: -75px;
    }
    
    .value-item[data-angle="270"] {
        top: -75px;
    }
    
    .value-content {
        padding: 16px;
    }
    
    .value-content h4 {
        font-size: 1.125rem;
    }
    
    .value-content p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .core-values-container {
        min-height: 400px;
    }
    
    .core-values-circle {
        width: 320px;
        height: 320px;
    }
    
    .center-element {
        width: 100px;
        height: 100px;
    }
    
    .center-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .center-element h3 {
        font-size: 0.75rem;
    }
    
    .value-item {
        width: 120px;
        height: 120px;
    }
    
    .value-item[data-angle="0"] {
        right: -60px;
    }
    
    .value-item[data-angle="90"] {
        bottom: -60px;
    }
    
    .value-item[data-angle="180"] {
        left: -60px;
    }
    
    .value-item[data-angle="270"] {
        top: -60px;
    }
    
    .value-content {
        padding: 12px;
    }
    
    .value-content h4 {
        font-size: 1rem;
    }
    
    .value-content p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .value-icon svg {
        width: 24px;
        height: 24px;
    }
}