        /* Page Header Section */
        
/*---------------->
       /* Values Section */
        .values-section {
            padding: 80px 0;
            background-color: #f0f2f5;
        }
        
        .section-label {
            color: #0d6478;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .section-description {
            color: #6c757d;
            font-size: 1rem;
            line-height: 1.7;
            max-width: 600px;
            margin-bottom: 50px;
        }
        
        /* Value Cards */
        .value-card {
            background: #fff;
            border-radius: 15px;
            padding: 35px 30px;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .value-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0a4d5c 0%, #0d6478 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }
        
        .value-card:hover .value-icon {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(13, 100, 120, 0.3);
        }
        
        .value-icon i {
            font-size: 1.5rem;
            color: #fff;
        }
        
        .value-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 15px;
        }
        
        .value-description {
            color: #6c757d;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .values-section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .value-card {
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .section-title {
                font-size: 1.75rem;
            }
        }
/*----------------->
        /* Process Section */
        .process-section {
            padding: 80px 0;
            background-color: #fff;
        }
        
        .section-label {
            color: #6c757d;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            text-align: center;
            line-height: 1.3;
        }
        
        .section-description {
            color: #6c757d;
            font-size: 0.95rem;
            line-height: 1.7;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        /* Process Step */
        .process-step {
            margin-bottom: 80px;
        }
        
        .process-step:last-child {
            margin-bottom: 0;
        }
        
        .step-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }
        
        .step-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }
        
        .step-number {
            font-size: 5rem;
            font-weight: 700;
            color: #bec0c2;
            line-height: 1;
            margin-bottom: 15px;
        }
        
        .step-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .step-text {
            color: #6c757d;
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        .step-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #d1ecf1;
            color: #0d6478;
            text-decoration: none;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
        }
        
        .step-btn:hover {
            background-color: #0d6478;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(13, 100, 120, 0.2);
        }
        
        /* Content Alignment */
        .step-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 20px;
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .process-step {
                margin-bottom: 50px;
            }
            
            .step-image {
                height: 350px;
                margin-bottom: 30px;
            }
            
            .step-number {
                font-size: 4rem;
            }
            
            .step-title {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .process-section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .step-image {
                height: 300px;
            }
            
            .step-number {
                font-size: 3.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .section-title {
                font-size: 1.75rem;
            }
            
            .step-image {
                height: 250px;
            }
        }
.step-btn-small {
    text-align: center;
    width: 200px;
}






