/* Custom CSS for RPA Company Website */

/* Global Styles */
:root {
    --primary-color: #1A584F;
    --secondary-color: #2a6b5f;
    --light-bg: #E8EBE5;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Icon sizes */
.icon-sm {
    width: 16px;
    height: 16px;
}

.icon-md {
    width: 20px;
    height: 20px;
}

.icon-lg {
    width: 24px;
    height: 24px;
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-color);
    min-height: 100vh;
    padding: 80px 0 120px;
}

/* Background Pattern */
.hero-bg-pattern {
    opacity: 0.1;
}

.bg-blur-1 {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(40px);
}

.bg-blur-2 {
    position: absolute;
    top: 160px;
    right: 80px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    filter: blur(32px);
}

.bg-blur-3 {
    position: absolute;
    bottom: 80px;
    left: 33.33%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(40px);
}

.bg-blur-4 {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    filter: blur(32px);
}

/* Geometric Pattern */
.geometric-circle-1 {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.geometric-circle-2 {
    position: absolute;
    bottom: -128px;
    left: -128px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.geometric-circle-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Enterprise Badge */
.enterprise-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Hero Title */
.hero-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    color: var(--white);
}

.title-line-1 {
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-2 {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Description */
.hero-description {
    padding-left: 24px;
}

.description-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
    border-radius: 2px;
}

.description-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Feature Cards */
.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--white);
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.feature-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    color: var(--white);
}

.feature-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Hero CTA Button */
.btn-hero {
    background: var(--white);
    color: var(--primary-color);
    font-size: 1.125rem;
    padding: 20px 40px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-hero:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.btn-hero i:first-child {
    transition: transform 0.3s ease;
}

.btn-hero i:last-child {
    transition: transform 0.3s ease;
}

.btn-hero:hover i:first-child {
    transform: rotate(12deg);
}

.btn-hero:hover i:last-child {
    transform: translateX(4px);
}

/* Hero Image */
.hero-main-image {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.hero-img {
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    height: 320px;
    object-fit: cover;
    width: 100%;
}

/* Floating Icon */
.floating-icon {
    position: absolute;
    top: -16px;
    right: -16px;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.9));
    color: var(--primary-color);
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: pulse 2s infinite;
}

/* Floating Cards */
.floating-card-1 {
    position: absolute;
    bottom: -32px;
    left: -32px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 250px;
}

.floating-card-icon {
    background: rgba(26, 88, 79, 0.1);
    padding: 8px;
    border-radius: 8px;
}

.floating-card-icon i {
    color: var(--primary-color);
}

.floating-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.floating-card-desc {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.floating-card-2 {
    position: absolute;
    top: -24px;
    left: -24px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.live-indicator {
    color: #10b981;
    animation: pulse 2s infinite;
}

.live-text {
    font-size: 14px;
    font-weight: 500;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .description-text {
        font-size: 1.125rem;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-card-1,
    .floating-card-2 {
        position: static;
        margin-top: 16px;
    }
    
    .geometric-circle-1,
    .geometric-circle-2,
    .geometric-circle-3 {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 60px 0 80px;
    }
    
    .btn-hero {
        font-size: 1rem;
        padding: 16px 32px;
    }
}

/* Company Overview Section */
.company-overview-section {
    background-color: var(--light-bg);
    padding: 80px 0 120px;
}

/* Background Pattern */
.overview-bg-pattern {
    opacity: 0.05;
}

.pattern-dot-1 {
    position: absolute;
    top: 80px;
    left: 25%;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.pattern-dot-2 {
    position: absolute;
    top: 160px;
    right: 33.33%;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
}

.pattern-dot-3 {
    position: absolute;
    bottom: 128px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.pattern-dot-4 {
    position: absolute;
    bottom: 80px;
    right: 25%;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Section Header */
.section-divider-left,
.section-divider-right {
    width: 48px;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(26, 88, 79, 0.3));
}

.section-divider-right {
    background: linear-gradient(to left, transparent, rgba(26, 88, 79, 0.3));
}

.section-badge {
    border: 1px solid rgba(26, 88, 79, 0.3);
    color: var(--primary-color);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(26, 88, 79, 0.05);
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    color: var(--primary-color);
}

.title-primary {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-secondary {
    color: rgba(26, 88, 79, 0.8);
}

.section-underline {
    width: 128px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Overview Content */
.overview-content {
    padding-left: 32px;
}

.content-block {
    position: relative;
}

.content-line {
    position: absolute;
    left: -32px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), rgba(26, 88, 79, 0.3));
    border-radius: 2px;
}

.content-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.company-name {
    color: var(--primary-color);
    font-weight: 600;
}

.mission-block {
    background: linear-gradient(to right, rgba(26, 88, 79, 0.05), transparent);
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    margin-top: 32px;
}

.mission-text {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.6;
}

/* Statistics */
.stats-container {
    padding-top: 24px;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(26, 88, 79, 0.2);
}

/* Overview Cards */
.overview-card {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 0 0 0 100px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.overview-card:hover::before {
    opacity: 1;
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.card-icon {
    background: rgba(26, 88, 79, 0.1);
    padding: 12px;
    border-radius: 12px;
    transition: all 0.5s ease;
}

.overview-card:hover .card-icon {
    background: rgba(26, 88, 79, 0.2);
    transform: scale(1.1);
}

.card-icon i {
    color: var(--primary-color);
    width: 24px;
    height: 24px;
}

.card-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0;
    transition: color 0.3s ease;
}

.overview-card:hover .card-title {
    color: var(--secondary-color);
}

.card-desc {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.overview-card:hover .card-desc {
    color: var(--text-dark);
}

/* Card specific gradients */
.roi-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
}

.secure-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
}

.expert-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(147, 51, 234, 0.05));
}

.deploy-card {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
}

/* Responsive for Company Overview */
@media (max-width: 992px) {
    .overview-content {
        padding-left: 0;
        margin-bottom: 40px;
    }
    
    .content-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 24px !important;
    }
    
    .stat-divider {
        display: none;
    }
    
    .overview-card {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
    
    .mission-text {
        font-size: 1.125rem;
    }
    
    .company-overview-section {
        padding: 60px 0 80px;
    }
}

/* Problem Statement Section */
.problem-section {
    background-color: var(--primary-color);
    padding: 80px 0 120px;
}

/* Background Effects */
.problem-bg-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
}

.problem-bg-pattern {
    opacity: 0.2;
}

.problem-blur-1 {
    position: absolute;
    top: 80px;
    left: 80px;
    width: 256px;
    height: 256px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(80px);
}

.problem-blur-2 {
    position: absolute;
    bottom: 80px;
    right: 80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(120px);
}

.problem-blur-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 384px;
    height: 384px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(80px);
}

/* Problem Section Header */
.problem-divider-left,
.problem-divider-right {
    width: 48px;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3));
}

.problem-divider-right {
    background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.3));
}

.problem-badge {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
}

.problem-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--white);
    line-height: 1.2;
}

.problem-underline {
    width: 128px;
    height: 4px;
    background: linear-gradient(to right, var(--white), rgba(255, 255, 255, 0.6));
    border-radius: 2px;
}

.problem-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Impact Title */
.impact-title {
    font-size: 2rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 48px;
}

/* Problem Cards */
.problem-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(8px);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.5s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.problem-card-content {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.problem-icon {
    background: rgba(239, 68, 68, 0.2);
    padding: 12px;
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.5s ease;
}

.problem-card:hover .problem-icon {
    background: rgba(239, 68, 68, 0.3);
    transform: scale(1.1);
}

.problem-icon i {
    color: #fca5a5;
    width: 24px;
    height: 24px;
}

.problem-text {
    color: var(--white);
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.problem-card:hover .problem-text {
    color: rgba(255, 255, 255, 0.95);
}

/* Card specific styles */
.cost-card {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
}

.error-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
}

.team-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
}

.speed-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(147, 51, 234, 0.1));
}

.error-card .problem-icon {
    background: rgba(245, 158, 11, 0.2);
}

.error-card:hover .problem-icon {
    background: rgba(245, 158, 11, 0.3);
}

.error-card .problem-icon i {
    color: #fbbf24;
}

.team-card .problem-icon {
    background: rgba(59, 130, 246, 0.2);
}

.team-card:hover .problem-icon {
    background: rgba(59, 130, 246, 0.3);
}

.team-card .problem-icon i {
    color: #93c5fd;
}

.speed-card .problem-icon {
    background: rgba(147, 51, 234, 0.2);
}

.speed-card:hover .problem-icon {
    background: rgba(147, 51, 234, 0.3);
}

.speed-card .problem-icon i {
    color: #c4b5fd;
}

/* Problem CTA */
.problem-cta-container {
    text-align: center;
    margin-top: 64px;
}

.problem-cta-card {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(8px);
    padding: 48px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 24px;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-problem-cta {
    background: var(--white);
    color: var(--primary-color);
    font-size: 1.125rem;
    padding: 20px 40px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-problem-cta:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.btn-problem-cta i:first-child {
    transition: transform 0.3s ease;
}

.btn-problem-cta i:last-child {
    transition: transform 0.3s ease;
}

.btn-problem-cta:hover i:first-child {
    transform: rotate(12deg);
}

.btn-problem-cta:hover i:last-child {
    transform: translateX(4px);
}

/* Responsive for Problem Section */
@media (max-width: 768px) {
    .problem-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .problem-card {
        padding: 24px;
    }
    
    .problem-card-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .problem-cta-card {
        padding: 32px 24px;
    }
}

@media (max-width: 576px) {
    .problem-title {
        font-size: 2rem;
    }
    
    .impact-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .problem-section {
        padding: 60px 0 80px;
    }
    
    .btn-problem-cta {
        font-size: 1rem;
        padding: 16px 32px;
    }
}

/* Services Section */
.services-section {
    background-color: var(--light-bg);
    padding: 80px 0 120px;
}

/* Decorative Elements */
.services-decorative {
    opacity: 0.05;
}

.decorative-circle-1 {
    position: absolute;
    top: 160px;
    left: -80px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.decorative-circle-2 {
    position: absolute;
    bottom: 160px;
    right: -80px;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

/* Services Header */
.services-badge {
    border: 1px solid rgba(26, 88, 79, 0.3);
    color: var(--primary-color);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(26, 88, 79, 0.05);
    display: inline-block;
    margin-bottom: 32px;
}

.services-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.2;
}

.services-underline {
    width: 128px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.services-subtitle {
    font-size: 1.25rem;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    height: 100%;
    min-height: 400px;
}

.service-card-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 0 16px 0 100px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover .service-card-overlay {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-header {
    padding: 32px 32px 24px;
}

.service-icon {
    background: rgba(26, 88, 79, 0.1);
    padding: 16px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background: rgba(26, 88, 79, 0.2);
    transform: scale(1.1);
}

.service-icon i {
    color: var(--primary-color);
    width: 32px;
    height: 32px;
}

.service-title {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1.4;
    margin: 0;
}

.service-content {
    padding: 0 32px 32px;
}

.service-description {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

.service-cta {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-card:hover .service-cta {
    color: var(--secondary-color);
}

.cta-text {
    margin-right: 8px;
}

.cta-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.service-card:hover .cta-arrow {
    transform: translateX(4px);
}

/* Service Card Specific Gradients */
.consulting-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
}

.implementation-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
}

.cognitive-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(147, 51, 234, 0.05));
}

.desktop-card {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
}

.managed-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.05));
}

.support-card {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(236, 72, 153, 0.05));
}

/* Hover effects for specific cards */
.consulting-card:hover {
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.implementation-card:hover {
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
}

.cognitive-card:hover {
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.15);
}

.desktop-card:hover {
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.managed-card:hover {
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15);
}

.support-card:hover {
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.15);
}

/* Responsive for Services Section */
@media (max-width: 768px) {
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-subtitle {
        font-size: 1.125rem;
    }
    
    .service-card {
        min-height: 350px;
    }
    
    .service-header {
        padding: 24px 24px 20px;
    }
    
    .service-content {
        padding: 0 24px 24px;
    }
    
    .service-title {
        font-size: 1.125rem;
    }
}

@media (max-width: 576px) {
    .services-title {
        font-size: 2rem;
    }
    
    .services-section {
        padding: 60px 0 80px;
    }
    
    .service-card {
        min-height: 320px;
    }
}

/* Case Studies Section */
.case-studies-section {
    background-color: var(--primary-color);
    padding: 80px 0 120px;
}

/* Background Effects */
.case-studies-bg {
    opacity: 1;
}

.case-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e5d54 50%, #245a50 100%);
}

.case-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.case-bg-line-1 {
    position: absolute;
    top: 0;
    left: 25%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.case-bg-line-2 {
    position: absolute;
    top: 0;
    right: 25%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.case-bg-line-3 {
    position: absolute;
    top: 25%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Case Studies Header */
.case-studies-badge {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    display: inline-block;
    margin-bottom: 32px;
}

.case-studies-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--white);
    line-height: 1.2;
}

.case-studies-underline {
    width: 128px;
    height: 4px;
    background: linear-gradient(to right, var(--white), rgba(255, 255, 255, 0.6));
    border-radius: 2px;
}

.case-studies-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Case Study Carousel */
.case-study-carousel {
    margin-bottom: 48px;
}

.case-study-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.case-study-header {
    padding: 32px 32px 24px;
}

.case-study-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 16px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.case-study-icon i {
    color: var(--white);
    width: 32px;
    height: 32px;
}

.case-study-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4;
    margin: 0;
}

.case-study-content {
    padding: 0 32px 40px;
}

/* Case Sections */
.case-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.case-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.case-section-icon {
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.challenge-icon {
    background: rgba(239, 68, 68, 0.2);
}

.challenge-icon i {
    color: #fca5a5;
    width: 20px;
    height: 20px;
}

.approach-icon {
    background: rgba(245, 158, 11, 0.2);
}

.approach-icon i {
    color: #fbbf24;
    width: 20px;
    height: 20px;
}

.results-icon {
    background: rgba(34, 197, 94, 0.2);
}

.results-icon i {
    color: #86efac;
    width: 20px;
    height: 20px;
}

.case-section-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Results List */
.results-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.result-check {
    color: #10b981;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Navigation Dots */
.case-studies-navigation {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.nav-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
}

.nav-dot.active {
    width: 48px;
    border-radius: 20px;
    background: var(--white);
    transform: scale(1.1);
}

.nav-dot.active::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    border-radius: 20px;
    animation: pulse 2s infinite;
}

.nav-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Case Study Animation Classes */
.case-study-fade-in {
    opacity: 1;
    transform: translateX(0);
}

.case-study-fade-out {
    opacity: 0;
    transform: translateX(-20px);
}

/* Responsive for Case Studies */
@media (max-width: 768px) {
    .case-studies-title {
        font-size: 2.5rem;
    }
    
    .case-studies-subtitle {
        font-size: 1.125rem;
    }
    
    .case-study-header {
        padding: 24px 24px 20px;
    }
    
    .case-study-content {
        padding: 0 24px 32px;
    }
    
    .case-study-title {
        font-size: 1.25rem;
    }
    
    .case-section {
        padding: 20px;
        margin-bottom: 16px;
    }
}

@media (max-width: 576px) {
    .case-studies-title {
        font-size: 2rem;
    }
    
    .case-studies-section {
        padding: 60px 0 80px;
    }
    
    .case-study-title {
        font-size: 1.125rem;
    }
}

/* ================================
   Technology Stack Section
   ================================ */

.tech-stack-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #E8EBE5 0%, #F5F7F2 100%);
    position: relative;
    overflow: hidden;
}

.tech-stack-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4D9CD' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.3;
}

/* Section Header */
.tech-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(26, 88, 79, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(26, 88, 79, 0.2);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.tech-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 30px;
}

.tech-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin-bottom: 30px;
}

.tech-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Tech Cards */
.tech-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

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

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(26, 88, 79, 0.3);
}

.tech-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(26, 88, 79, 0.02) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-card:hover .tech-card-overlay {
    opacity: 1;
}

/* Tech Header */
.tech-header {
    margin-bottom: 25px;
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(26, 88, 79, 0.2);
}

.tech-icon i {
    color: white;
    font-size: 24px;
}

.tech-card:hover .tech-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(26, 88, 79, 0.3);
}

.tech-category-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
}

/* Tech Content */
.tech-content {
    position: relative;
    z-index: 2;
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tech-item:last-child {
    border-bottom: none;
}

.tech-item:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.tech-check {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

.tech-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.tech-item:hover span {
    color: var(--primary-color);
}

/* Category-specific styling */
.rpa-platforms-card .tech-icon {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
}

.rpa-platforms-card:hover .tech-icon {
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
}

.ocr-card .tech-icon {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
}

.ocr-card:hover .tech-icon {
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.3);
}

.ai-ml-card .tech-icon {
    background: linear-gradient(135deg, #845EC2, #B39BC8);
}

.ai-ml-card:hover .tech-icon {
    box-shadow: 0 15px 35px rgba(132, 94, 194, 0.3);
}

.cloud-card .tech-icon {
    background: linear-gradient(135deg, #00C9FF, #92FE9D);
}

.cloud-card:hover .tech-icon {
    box-shadow: 0 15px 35px rgba(0, 201, 255, 0.3);
}

.database-card .tech-icon {
    background: linear-gradient(135deg, #FC466B, #3F5EFB);
}

.database-card:hover .tech-icon {
    box-shadow: 0 15px 35px rgba(252, 70, 107, 0.3);
}

.integration-card .tech-icon {
    background: linear-gradient(135deg, #FFCE00, #FE4880);
}

.integration-card:hover .tech-icon {
    box-shadow: 0 15px 35px rgba(255, 206, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tech-stack-section {
        padding: 80px 0;
    }
    
    .tech-title {
        font-size: 2.2rem;
    }
    
    .tech-subtitle {
        font-size: 1.1rem;
    }
    
    .tech-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .tech-category-title {
        font-size: 1.2rem;
    }
}

/* ================================
   Process Flow Section
   ================================ */

.process-flow-section {
    padding: 120px 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

/* Background Effects */
.process-bg {
    opacity: 1;
}

.process-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e5d54 50%, #245a50 100%);
}

.process-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.process-pattern-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.process-pattern-2 {
    position: absolute;
    bottom: 30%;
    right: 15%;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.process-pattern-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Section Header */
.process-badge {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    display: inline-block;
    margin-bottom: 32px;
}

.process-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--white);
    line-height: 1.2;
}

.process-underline {
    width: 128px;
    height: 4px;
    background: linear-gradient(to right, var(--white), rgba(255, 255, 255, 0.6));
    border-radius: 2px;
}

.process-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Process Flow Container */
.process-flow-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

/* Process Steps */
.process-step {
    display: flex;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.process-step.animate {
    opacity: 1;
    transform: translateX(0);
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
    transform: translateX(50px);
}

.process-step:nth-child(even).animate {
    transform: translateX(0);
}

.process-step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px 35px;
    flex: 1;
    max-width: 500px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.process-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 2px 2px 0 0;
}

/* Step Elements */
.step-number {
    position: absolute;
    top: -15px;
    right: 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.step-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.process-step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.25);
}

.step-icon i {
    color: var(--white);
    font-size: 28px;
}

.step-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.3;
}

.step-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

/* Step Features */
.step-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.feature-check {
    color: #10b981;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Process Connectors */
.process-connector {
    flex: 0 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 30px;
}

.connector-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
    position: relative;
}

.connector-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
    animation: flow 3s linear infinite;
}

@keyframes flow {
    0% {
        transform: translateY(-50%) translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-50%) translateX(100%);
        opacity: 0;
    }
}

.connector-arrow {
    position: absolute;
    right: -10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connector-arrow i {
    color: var(--white);
    font-size: 16px;
}

/* Hide connector for last step */
.process-step:last-child .process-connector {
    display: none;
}

/* Process Benefits */
.process-benefits-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 50px 40px;
    margin-top: 60px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.benefits-header {
    margin-bottom: 40px;
}

.benefits-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.benefits-icon i {
    color: var(--white);
    font-size: 32px;
}

.benefits-title {
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.benefit-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-flow-section {
        padding: 80px 0;
    }
    
    .process-title {
        font-size: 2.5rem;
    }
    
    .process-subtitle {
        font-size: 1.125rem;
    }
    
    .process-flow-container {
        gap: 60px;
    }
    
    .process-step {
        flex-direction: column !important;
        transform: translateY(30px) !important;
    }
    
    .process-step.animate {
        transform: translateY(0) !important;
    }
    
    .process-step-card {
        max-width: 100%;
        padding: 30px 25px;
    }
    
    .process-connector {
        transform: rotate(90deg);
        margin: 20px 0;
        flex: 0 0 80px;
    }
    
    .connector-line {
        width: 60px;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .benefits-title {
        font-size: 1.75rem;
    }
    
    .benefit-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .process-title {
        font-size: 2rem;
    }
    
    .process-flow-section {
        padding: 60px 0;
    }
    
    .process-step-card {
        padding: 25px 20px;
    }
    
    .process-benefits-card {
        padding: 40px 25px;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
}

/* ================================
   Contact/CTA Section
   ================================ */

.contact-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #E8EBE5 0%, #F5F7F2 100%);
    position: relative;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4D9CD' fill-opacity='0.1'%3E%3Cpath d='M0 0h80v80H0V0zm20 20v40h40V20H20zm20 35a15 15 0 1 1 0-30 15 15 0 0 1 0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.3;
}

/* Section Header */
.contact-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(26, 88, 79, 0.3);
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 30px;
}

.contact-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin-bottom: 30px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* CTA Cards */
.cta-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 50px 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cta-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.cta-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
}

.primary-cta .cta-card-bg {
    background: linear-gradient(135deg, rgba(26, 88, 79, 0.05), rgba(42, 107, 95, 0.05));
}

.secondary-cta .cta-card-bg {
    background: linear-gradient(135deg, rgba(42, 107, 95, 0.05), rgba(26, 88, 79, 0.05));
}

.cta-card:hover .cta-card-bg {
    opacity: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(26, 88, 79, 0.3);
}

.cta-icon i {
    color: white;
    font-size: 32px;
}

.cta-card:hover .cta-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(26, 88, 79, 0.4);
}

.cta-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-card-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* CTA Features */
.cta-features {
    margin-bottom: 35px;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 500;
}

.cta-feature-check {
    color: var(--primary-color);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* CTA Buttons */
.btn-cta-primary, .btn-cta-secondary {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(26, 88, 79, 0.3);
    color: white;
}

.btn-cta-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-cta-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(26, 88, 79, 0.3);
}

/* Contact Information */
.contact-info-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    margin-top: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-info-item {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 88, 79, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-info-icon i {
    color: var(--primary-color);
    font-size: 24px;
}

.contact-info-item:hover .contact-info-icon {
    background: rgba(26, 88, 79, 0.2);
    transform: scale(1.1);
}

.contact-info-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-text {
    color: #666;
    margin-bottom: 5px;
    font-size: 1rem;
}

/* Trust Indicators */
.trust-indicators {
    background: rgba(26, 88, 79, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(26, 88, 79, 0.1);
}

.trust-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.trust-item {
    text-align: center;
    padding: 20px 10px;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* ================================
   Footer Section
   ================================ */

.footer-section {
    background: var(--primary-color);
    padding: 80px 0 30px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-about {
    margin-bottom: 30px;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-certifications {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.certification-item {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(8px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-cta-section {
        padding: 80px 0;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-card {
        padding: 40px 30px;
        margin-bottom: 30px;
    }
    
    .cta-card-title {
        font-size: 1.5rem;
    }
    
    .contact-info-container {
        padding: 40px 25px;
    }
    
    .trust-indicators {
        padding: 30px 20px;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .footer-section {
        padding: 60px 0 30px;
    }
    
    .footer-certifications {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .contact-title {
        font-size: 1.8rem;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
    
    .cta-card-title {
        font-size: 1.3rem;
    }
    
    .btn-cta-primary, .btn-cta-secondary {
        padding: 15px 25px;
        font-size: 1rem;
    }
}