/* SES Way Page Styles */
.ses-way-section {
    padding: 80px 0;
}

.ses-way-header {
    margin-bottom: 60px;
    text-align: center;
}

.ses-way-header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.ses-way-content {
    position: relative;
    z-index: 1;
}

.section-intro {
    color: #6c757d;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.process-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .process-image {
    transform: scale(1.05);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-color: #CE2026;  /* SES brand color */
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.feature-icon i {
    color: #ffffff;
    font-size: 32px;
}

.feature-icon:hover {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    width: 100%;
}

.feature-text {
    color: #6c757d;
    line-height: 1.4;
    margin: 0;
    font-size: 0.95rem;
    text-align: justify;
    text-justify: inter-word;
    word-spacing: -0.5px;
    letter-spacing: -0.2px;
    width: 100%;
    hyphens: auto;
}

.image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .ses-way-header h1 {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .ses-way-section {
        padding: 60px 0;
    }
    
    .ses-way-header h1 {
        font-size: 2rem;
    }
}
